export declare const image: { (src: string): any; placeholder: string; cache: Map; }; export declare const link: { (src: string): any; cache: Map; }; declare interface LoadScriptOptions { async?: boolean; } declare interface LoadStyleCodeOptions { id?: string | HTMLElement; } export declare const removeStyle: (id: string | HTMLElement) => void; export declare const script: { (src: string, options?: LoadScriptOptions): any; cache: Map; }; export declare const style: { (value: string, options?: LoadStyleCodeOptions): void; cache: Set; }; export { }