/// <reference types="react" />
import { PopoverProps } from '.';
import { ButtonProps } from '../Button';
export interface PopoverConfirmProps extends PopoverProps {
    onConfirm?: () => void;
    onCancel?: () => void;
    text?: React.ReactNode;
    confirmButtonProps?: ButtonProps;
}
export default function PopoverConfirm({ children, text, onConfirm, onCancel, className, confirmButtonProps, ...props }: PopoverConfirmProps): import("react/jsx-runtime").JSX.Element;
