import type { PropType, ExtractPropTypes } from 'vue'; import type { File, ImportMap } from '../core'; import type { PlaygroundLifeCycle, PlaygroundPkgCdn, PlaygroundThemes } from './utils/types-helper'; export declare const playgroundProps: () => { readonly title: { readonly type: StringConstructor; readonly default: "Demo"; }; readonly files: { readonly type: PropType; readonly default: () => never[]; }; readonly lifeCycle: { readonly type: PropType; readonly default: () => {}; }; readonly themes: { readonly type: PropType; readonly default: () => {}; }; readonly importMap: { readonly type: PropType; readonly default: () => {}; }; readonly pkgCdn: { readonly type: PropType; readonly default: () => {}; }; }; export declare type PlaygroundProps = Readonly>>;