import type { AuthProviderType } from '@redocly/realm/dist/shared/types/global-data';
export type LoginProps = {
    authIdps?: {
        idpId: string;
        type: AuthProviderType;
        title?: string;
    }[];
};
export default function (): JSX.Element;
