//#region src/platforms/install-source.d.ts type MaterializeInstallSource = { kind: 'url'; url: string; headers?: Record; } | { kind: 'path'; path: string; }; declare function validateDownloadSourceUrl(parsedUrl: URL): Promise; declare function isTrustedInstallSourceUrl(sourceUrl: string | URL): boolean; //#endregion export { type MaterializeInstallSource, isTrustedInstallSourceUrl, validateDownloadSourceUrl };