interface LoadContext { format?: string | null; importAttributes?: Record; } type NextLoad = (url: string, context: LoadContext) => Promise<{ source: string | ArrayBuffer; format: string; }>; export declare function load(url: string, context: LoadContext, nextLoad: NextLoad): Promise<{ source: string; format: string; shortCircuit?: boolean; }>; export {}; //# sourceMappingURL=decorator-loader-hooks.d.ts.map