import type { OAuthProvider } from "./interfaces"; /** * Creates a Slack OAuth Provider integration (OAuth 2.0 / "Sign in with Slack"). * Uses the OpenID Connect flow with the "openid,email,profile" scopes. */ export declare function createSlackProvider(config: { clientId: string; clientSecret: string; }): OAuthProvider<{ code: string; redirectUri: string; }>;