import type { CancelablePromise } from '../core/CancelablePromise'; export declare class UserLoginsService { /** * Get supported login providers * @returns string OK * @throws ApiError */ static getSupportedLoginProviders(): CancelablePromise>; /** * Get users' external logins' ids * @returns string Dictionary of user ids and associated external ids * @throws ApiError */ static getUserLoginsExternalIds({ provider, requestBody, }: { provider: string | null; requestBody: Array; }): CancelablePromise>; }