import { CardProps } from '@heroui/react'; export interface ChangePasswordProps { className?: string; variant?: CardProps["variant"]; } /** * Render a card form for changing the authenticated user's password. * * When the user has a credential account, displays fields for current password, * new password, and optionally confirm password. When the user only has social * accounts, displays a prompt to set a password via the reset flow. * * @returns A JSX element containing the change-password or set-password card */ export declare function ChangePassword({ className, variant }: ChangePasswordProps): import("react").JSX.Element;