export declare let WebpackResourceLoader: {
    new (): any;
    get(filename: string): Promise<string>;
};
export declare type WebpackResourceLoader = {
    new (): any;
    get(filename: string): Promise<string>;
    update(parentCompilation: any): void;
    getResourceDependencies(filePath: string): string[];
};
