import { type ReactElement, type ReactNode } from 'react'; import type { SpectrumLabelableProps } from '@react-types/shared'; export interface ConfirmActionButtonProps { ariaLabel: string; heading: ReactNode; confirmationButtonLabel: string; children: ReactElement | ReactElement[]; isHidden?: boolean; tooltip?: string; onConfirm: () => void; } export declare function ConfirmActionButton({ ariaLabel, heading, confirmationButtonLabel, isHidden, children, tooltip, onConfirm, }: ConfirmActionButtonProps): JSX.Element; export default ConfirmActionButton; //# sourceMappingURL=ConfirmActionButton.d.ts.map