/** * @param {string} url * @param {{ format: string, importAssertions: { type?: 'module' | 'json' | 'css' } }} context * @param {Function} defaultLoad * @returns {Promise<{ format: string, source: string | ArrayBuffer | SharedArrayBuffer | Uint8Array }>} */ export function load(url: string, context: { format: string; importAssertions: { type?: 'module' | 'json' | 'css'; }; }, defaultLoad: Function): Promise<{ format: string; source: string | ArrayBuffer | SharedArrayBuffer | Uint8Array; }>; //# sourceMappingURL=litCssLoader.d.ts.map