import type { OAuthProvider } from "./interfaces"; /** * Creates a Discord OAuth2 Provider integration. * * Uses the authorization code flow. Requires the "identify" and "email" * scopes to retrieve the user's email and profile information. */ export declare function createDiscordProvider(config: { clientId: string; clientSecret: string; }): OAuthProvider<{ code: string; redirectUri: string; }>;