import { File } from '../../compiler/type'; export interface FileSystem { files: Record; entry: string; activeFile: string; imports: Record; } export declare const getTemplate: (appType?: string) => { 'index.html': string; 'index.js': string; 'index.css': string; "import-map.json": string; } | { 'index.html': string; 'main.tsx': string; 'App.tsx': string; "import-map.json": string; } | { 'index.html': string; 'index.ts': string; "import-map.json": string; } | { 'index.html': string; 'main.ts': string; 'App.vue': string; "import-map.json": string; }; export declare const getFileExtraName: (filename: string) => string; export declare const getFileLanguage: (filename: string) => string;