interface IScript { $: IScriptContent; } interface IScriptContent { src: string; type: string; cache?: string; validate?: string; } export declare function generateMetaEntries(files: string[], sourceMaps: boolean): IScript[]; export declare function buildMeta(answers: IAnswer): void; export {};