interface ThrottledLoaderOpts {
    callsPerSecond?: number;
}
export declare const getThrottledLoader: (opts?: ThrottledLoaderOpts) => {
    loadImage: import("p-throttle").ThrottledFunction<(url: string) => Promise<HTMLImageElement>>;
};
export {};
