import type { OAuthProvider } from "./interfaces"; /** * Creates a GitLab OAuth Provider integration. * Works with both GitLab.com and self-hosted instances. */ export declare function createGitLabProvider(config: { clientId: string; clientSecret: string; baseUrl?: string; }): OAuthProvider<{ code: string; redirectUri: string; }>;