import type { OAuthProvider } from "./interfaces"; /** * Creates a Spotify OAuth Provider integration. * Uses the authorization code flow with the "user-read-email" scope. */ export declare function createSpotifyProvider(config: { clientId: string; clientSecret: string; }): OAuthProvider<{ code: string; redirectUri: string; }>;