import type { OAuthProvider } from "./interfaces"; /** * Creates a Facebook / Meta OAuth Provider integration. * * Uses the authorization code flow to exchange a code for an access token, * then fetches user profile from the Facebook Graph API. */ export declare function createFacebookProvider(config: { clientId: string; clientSecret: string; }): OAuthProvider<{ code: string; redirectUri: string; }>;