import type { OAuthConfig, OAuthUserConfig } from "."; export interface AzureADProfile extends Record { sub: string; nickname: string; email: string; picture: string; } export default function AzureAD

(options: OAuthUserConfig

& { /** * https://docs.microsoft.com/en-us/graph/api/profilephoto-get?view=graph-rest-1.0#examples * @default 48 */ profilePhotoSize?: 48 | 64 | 96 | 120 | 240 | 360 | 432 | 504 | 648; /** @default "common" */ tenantId?: string; }): OAuthConfig

; //# sourceMappingURL=azure-ad.d.ts.map