/** * @param {string} id * @param {{ tenant?: string, clientId: string, clientSecret?: string, scope?: string[], redirectUri?: string, id?: string }} options */ export function createEntraProvider(id: string, options?: { tenant?: string; clientId: string; clientSecret?: string; scope?: string[]; redirectUri?: string; id?: string; }): any;