diff --git a/packages/react-native/src/index.ts b/packages/react-native/src/index.ts index 9f6b6e2d91..2136ec8684 100644 --- a/packages/react-native/src/index.ts +++ b/packages/react-native/src/index.ts @@ -1,4 +1,4 @@ -import type { StorybookConfig as StorybookConfigBase } from '@storybook/core/types'; +import type { CoreConfig, StorybookConfig as StorybookConfigBase } from '@storybook/core/types'; import type { ReactNativeOptions } from './Start'; export { darkTheme, theme, type Theme } from '@storybook/react-native-theming'; @@ -8,4 +8,5 @@ export interface StorybookConfig { stories: StorybookConfigBase['stories']; addons: string[]; reactNative?: ReactNativeOptions; + core?: CoreConfig; }