import { SuccessConfirmationPageProps } from '../types'; interface SuccessConfirmationProps extends SuccessConfirmationPageProps { onClose: () => void; } declare function SuccessConfirmation({ heading, message, onClose, successConfirmationButton, }: SuccessConfirmationProps): import("react/jsx-runtime").JSX.Element; export default SuccessConfirmation;