preset.d.ts 671 B

123456789101112131415
  1. import { P as PresetProperty } from './index.d-1fe859cf.js';
  2. import { TransformOptions } from '@babel/core';
  3. import { StorybookConfig } from './index.js';
  4. import 'file-system-cache';
  5. import 'http';
  6. import '@storybook/preset-react-webpack';
  7. import '@storybook/builder-webpack5';
  8. declare const addons: PresetProperty<'addons', StorybookConfig>;
  9. declare const core: PresetProperty<'core'>;
  10. declare const previewAnnotations: StorybookConfig['previewAnnotations'];
  11. declare const babel: (baseConfig: TransformOptions) => Promise<TransformOptions>;
  12. declare const webpackFinal: StorybookConfig['webpackFinal'];
  13. export { addons, babel, core, previewAnnotations, webpackFinal };