import React from "react"; import type { ModalLegacyProps } from "./Modal.types"; /** * @deprecated Use the `Dialog` component instead. */ export declare function ModalLegacy({ open, title, size, dismissible, children, primaryAction, secondaryAction, tertiaryAction, onRequestClose, ariaLabel, }: ModalLegacyProps): React.JSX.Element;