import { CardProps } from '@heroui/react'; import { ComponentProps, ReactNode } from 'react'; export interface DangerZoneProps { children?: ReactNode; className?: string; includeDeleteUser?: boolean; variant?: CardProps["variant"]; } /** * Renders the danger zone heading and its destructive actions. * Used by the shared account danger-zone section; gate delete-account rendering by registering `deleteUserPlugin()`. */ export declare function DangerZone({ children, className, includeDeleteUser, variant, ...props }: DangerZoneProps & ComponentProps<"div">): import("react").JSX.Element;