import { type CustomerSerializer } from '../lib';
export declare class URLSerializer {
    private static instance;
    static getInstance(): CustomerSerializer<{
        new (url: string | URL, base?: string | URL | undefined): URL;
        prototype: URL;
        canParse(url: string | URL, base?: string | undefined): boolean;
        createObjectURL(obj: Blob | MediaSource): string;
        revokeObjectURL(url: string): void;
    }, string>;
}
