import type { IdentityProviderResponse } from './IdentityProviderResponse'; /** * @type IdpListResponse: * * @property data: An array of identity providers. * */ export type IdpListResponse = { data: Array; } & { [key: string]: any; };