export declare class ErrorV3 extends Error { code: string; args?: ARGS; constructor(message?: string, code?: string, stack?: undefined, args?: ARGS | undefined); } export declare const isErrorV3: (obj: any) => obj is ErrorV3;