import { CardProps } from '@heroui/react'; import { AuthSurfaceVariant } from '../../lib/auth/core/resolve-auth-input-variant.js'; import { AthenaAuthUiOptions } from '../../lib/auth/core/ui-options.js'; export interface ForgotPasswordProps { className?: string; /** Overrides the generated `forgot-password-*` trace id. */ id?: string; ui?: AthenaAuthUiOptions; /** Shell variant; `primary`/`transparent` → primary TextFields. */ variant?: AuthSurfaceVariant; } /** * Render a card-based "Forgot Password" form that sends a password-reset email. * * @param className - Additional CSS classes applied to the card * @param id - The ID of the card * @param ui - The UI options * @param variant - The variant of the card * @param props - Additional props for the card * @returns The forgot password card React element */ export declare function ForgotPassword({ className, id, ui, variant, ...props }: ForgotPasswordProps & Omit): import("react").JSX.Element;