import React from 'react'; import { AuthResponse } from './AuthResponse'; export interface AuthProviderConfig { id: string; name: string; type: 'oauth' | 'credentials' | 'magiclink' | 'passkey'; [key: string]: any; } interface SignInPageProps { providers: AuthProviderConfig[]; signIn: (providerId: string, formData?: Record) => Promise; title?: string; subtitle?: string; className?: string; } export declare const SignInPage: React.FC; export {};