import { OAuthProvider, ProviderConfig } from "./OAuthProvider"; /** * Supported OAuth provider names */ export type ProviderName = "github" | "google"; /** * Factory function to create OAuth provider instances * * @param providerName - Name of the OAuth provider * @param config - Provider configuration * @returns Instance of the requested OAuth provider * @throws Error if provider is not supported */ export declare function getProvider(providerName: ProviderName, config: ProviderConfig): OAuthProvider;