import * as React from "react"; import { ModalBaseProps } from "./ModalBase"; import { IconProps } from "../../icon/components/Icon"; export interface DialogModalProps extends ModalBaseProps { /** Content that gets anchored to the button of the footer. Currently, this is just primary and secondary actions. ⚠️Do not use this directly⚠️ */ footerContent?: React.ReactNode; /** Whether we automatically add padding to the body of the modal. */ isContentFlush?: boolean; /** The text displayed in the header of the modal. */ title: React.ReactNode; /** Controls the icon displayed next to the title, here we can customize color, size, and shape. */ icon?: IconProps; } declare const _default: (props: DialogModalProps) => React.JSX.Element; export default _default;