/**
 * Indicates a `Serializer` does not support the given `type`
 */
export declare class UnsupportedSerializerTypeError extends Error {
    readonly type: string;
    constructor(type: string);
}
