export declare class UnauthorizedError extends Error { inner: { message: string; }; data: { message: string; code: string; type: "UnauthorizedError"; }; constructor(code: string, error: { message: string; }); } export declare const isUnauthorizedError: (error: unknown) => error is UnauthorizedError;