import type { ZveltioConfig } from '../types/index.js'; export declare class Auth { private config; constructor(config: ZveltioConfig); signIn(email: string, password: string): Promise<{ user: any; session: any; }>; signUp(name: string, email: string, password: string): Promise<{ user: any; }>; signOut(): Promise; getSession(): Promise<{ user: any; session: any; } | null>; signInWithOAuth(provider: 'google' | 'github' | 'microsoft'): void; } //# sourceMappingURL=Auth.d.ts.map