declare class ProxyCacheError extends Error {
    constructor(message: string);
    static unsupportedProxyCacheType(): ProxyCacheError;
}
declare class ValidationError extends ProxyCacheError {
    static invalidFormat(details?: string): ValidationError;
}

export { ProxyCacheError, ValidationError };
