UNPKG

298 BTypeScriptView Raw
1import { type FC } from 'react';
2import type { IPreviewerProps } from './types';
3export interface IDumiDemoProps {
4 demo: {
5 id: string;
6 inline?: boolean;
7 };
8 previewerProps: Omit<IPreviewerProps, 'asset' | 'children'>;
9}
10export declare const DumiDemo: FC<IDumiDemoProps>;