import React from 'react'; import { type ButtonColors } from '../button'; type Props = { children?: React.ReactNode | React.ReactNode[]; closeable?: boolean; closeButtonLabel?: string; descriptionList: React.ReactNode[]; onClose: () => void; onPrimaryButtonClick: React.MouseEventHandler; onSecondaryButtonClick?: React.MouseEventHandler; primaryButtonLabel: string; primaryButtonColor?: ButtonColors; primaryButtonDisabled?: boolean; secondaryButtonColor?: ButtonColors; secondaryButtonLabel?: string; title: React.ReactNode; }; declare function GenericConfirmModalContent({ children, closeable, closeButtonLabel, descriptionList, onClose, onPrimaryButtonClick, onSecondaryButtonClick, primaryButtonLabel, primaryButtonColor, primaryButtonDisabled, secondaryButtonColor, secondaryButtonLabel, title }: Props): React.JSX.Element; export default GenericConfirmModalContent;