/**
 * Browser-based OAuth login for siracmd.
 *
 * Opens a browser to the Supabase OAuth flow (GitHub/Google),
 * runs a local HTTP server to receive the callback, and stores
 * the session in ~/.sira/cli-config.json.
 */
declare const SUPABASE_URL = "https://tntjbdhrvicesifuxunc.supabase.co";
declare const SUPABASE_ANON_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InRudGpiZGhydmljZXNpZnV4dW5jIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzMyNjQyMDgsImV4cCI6MjA4ODg0MDIwOH0.Jqpv0508USVVyLfmvFUr931yAm8mBxb4Jn6fWFtF41U";
export { SUPABASE_URL, SUPABASE_ANON_KEY };
export declare function login(provider?: "github" | "google"): Promise<{
    userId: string;
    email: string;
    accessToken: string;
}>;
//# sourceMappingURL=auth.d.ts.map