import { type ComponentPropsWithoutRef, type CSSProperties, type ReactNode, type Ref } from 'react'; export type ConfirmUninstallProps = Omit, 'title'> & { cancelLabel?: ReactNode; closeLabel?: string; disabled?: boolean; height?: CSSProperties['height']; itemName?: ReactNode; onCancel?: () => void; onUninstall?: () => void; prompt?: ReactNode; ref?: Ref; uninstallLabel?: ReactNode; width?: CSSProperties['width']; windowTitle?: ReactNode; }; export declare const ConfirmUninstall: ({ cancelLabel, className, closeLabel, disabled, height, itemName, onCancel, onMouseLeave, onMouseMove, onUninstall, prompt, ref, style, uninstallLabel, width, windowTitle, ...sectionProps }: ConfirmUninstallProps) => import("react/jsx-runtime").JSX.Element;