import { UiNode } from '@ory/client'; import { JSX } from 'react'; import { CustomHref } from '../../button-link'; import { SelfServiceFlow } from '../helpers/types'; export interface LoginSectionProps { nodes: UiNode[]; forgotPasswordURL?: CustomHref | string; } export declare const IdentifierFirstLoginSection: (flow: SelfServiceFlow) => JSX.Element | null; export declare const LoginSection: ({ nodes, forgotPasswordURL, }: LoginSectionProps) => JSX.Element | null; //# sourceMappingURL=login-section.d.ts.map