export interface IScriptsAndStyles {
    scripts: Array<any>;
    styles: Array<any>;
    reversedStyles: Array<any>;
    reversedScripts: Array<any>;
}
export declare function readWebpackStats(publicDir: string): Promise<any>;
export declare function getScriptsAndStylesForTemplate(componentChunkName: any, webpackStats: any): Promise<IScriptsAndStyles>;
export declare function clearCache(): void;
