import { AuthErrorType } from './types'; export declare class AuthError extends Error { readonly message: string; readonly type?: AuthErrorType | undefined; constructor(message: string, type?: AuthErrorType | undefined); }