import type { ProcessOptions } from "postcss";
import type Processor from "postcss/lib/processor";
declare const load: Load;
export type Load = (url: string, file: string, extensions: string[], processor: Processor, options?: ProcessOptions) => Promise<Record<string, string>>;
export = load;
