import { ExcludedProps } from "@vitality-ds/system"; import { DialogProps } from "../Dialog/types"; import { ModalProps } from "../Modal/types"; export declare type ModalDialogProps = ExcludedProps & { /** * All the props associated with modals for the purpose of the ModalDialog */ modalProps: ModalProps; /** * All the props associated with dialog for the purpose of the ModalDialog */ dialogProps: DialogProps; };