import { PonyfillBlob } from './Blob.cjs';
export declare class PonyfillURL extends URL {
    static blobRegistry: Map<string, Blob | PonyfillBlob>;
    static createObjectURL(blob: Blob): string;
    static revokeObjectURL(url: string): void;
    static getBlobFromURL(url: string): Blob | PonyfillBlob | undefined;
}
