/** * @hidden */ export declare class NotSupportedError extends Error { property: string; method: string; readonly name: 'NOT_SUPPORTED_V1' | 'NOT_SUPPORTED_V2' | 'NOT_SUPPORTED'; constructor(property: string, method: string); } export declare class NotSupportedV1Error extends NotSupportedError { method: string; readonly name = "NOT_SUPPORTED_V1"; constructor(method: string); } export declare class NotSupportedV2Error extends NotSupportedError { method: string; readonly name = "NOT_SUPPORTED_V2"; constructor(method: string); }