export interface AuthIdentity { email: string | null; balance: number | null; } export interface CheckAuthOptions { apiKey: string; baseUrl?: string; fetch?: typeof fetch; } export declare function checkAuth(options: CheckAuthOptions): Promise;