15 lines
581 B
TypeScript
15 lines
581 B
TypeScript
import { PresetProperty } from 'storybook/internal/types';
|
|
import { S as StorybookConfig } from './types-aef892a1.js';
|
|
import '@storybook/builder-webpack5';
|
|
import '@storybook/preset-react-webpack';
|
|
import 'next/image';
|
|
import 'next/router';
|
|
|
|
declare const addons: PresetProperty<'addons'>;
|
|
declare const core: PresetProperty<'core'>;
|
|
declare const previewAnnotations: PresetProperty<'previewAnnotations'>;
|
|
declare const babel: PresetProperty<'babel'>;
|
|
declare const webpackFinal: StorybookConfig['webpackFinal'];
|
|
|
|
export { addons, babel, core, previewAnnotations, webpackFinal };
|