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 ResetEmailSentProps { className?: string; ui?: AthenaAuthUiOptions; variant?: AuthSurfaceVariant; } /** * Render a reset email sent card with the given props. * * @param className - Additional CSS classes applied to the card * @param ui - The UI options * @param variant - The variant of the card * @param props - Additional props for the card * @returns The reset email sent card React element */ export declare function ResetEmailSent({ className, ui, variant, ...props }: ResetEmailSentProps & Omit): import("react").JSX.Element;