UNPKG

317 BTypeScriptView Raw
1import { FC } from 'react';
2import { PreviewProps as PurePreviewProps } from '@storybook/components';
3import { SourceState } from './Source';
4export { SourceState };
5declare type CanvasProps = PurePreviewProps & {
6 withSource?: SourceState;
7 mdxSource?: string;
8};
9export declare const Canvas: FC<CanvasProps>;