import { Configuration } from "webpack"; import { StorybookConfig } from "@storybook/react-webpack5"; //#region src/config/storybook/webpackConfig.d.ts interface WebpackOptions { configType?: 'PRODUCTION' | 'DEVELOPMENT' | undefined; } type AsyncWebpackFinal = (configuration: Configuration, webpackOptions: WebpackOptions) => Promise; declare const webpackFinal: AsyncWebpackFinal; declare const babel: NonNullable; //#endregion export { babel, webpackFinal };