export declare function GitLab(options: { clientId: string; clientSecret: string; }): { id: string; name: string; type: "oauth"; clientId: string; clientSecret: string; authorization: { url: string; params?: Record; }; token: { url: string; }; userinfo: { url: string; }; profile: (profile: any) => { id: string; name?: string; email?: string; image?: string; }; };