export declare const generateCommonFile: (name: string, extension: string, content: any) => { file: string; content: any; }; export declare const generateCSSThemeRootFile: (name: string, content: object) => { file: string; content: string; }; export declare const generateCSSThemeModuleFile: (name: string, content: object) => { file: string; content: string; }; export declare const generateCSSTypoRootFile: (name: string, content: (string | undefined)[]) => { file: string; content: string; }; /** * Создает дескриптор на файл с определенным именем и контентом. */ export declare const generateFile: (name: string, content: string | object, deprecated?: string) => { file: string; content: string; };