import { CardProps } from '@heroui/react'; export interface DeleteUserProps { className?: string; variant?: CardProps["variant"]; } /** * Danger-zone card to delete the authenticated account, with a confirmation dialog and toasts. */ export declare function DeleteUser({ className, variant, ...props }: DeleteUserProps & Omit): import("react").JSX.Element;