import * as React from "react"; import { ButtonProps } from "../../button/components/ButtonBase"; import { DialogModalProps } from "./DialogModal"; export interface DialogModalWithFooterProps extends DialogModalProps { /** The primary button */ ctaButton: React.ReactElement; /** The text for the secondary button that closes the modal */ closeText?: React.ReactNode; } declare const _default: (props: DialogModalWithFooterProps) => React.JSX.Element; export default _default;