import React from 'react'; declare const Modal: { ({ zIndex, title, description, onClose, showSecondaryAction, secondaryActionProps, primaryActionProps, isOpen, children, }: { zIndex?: number | undefined; title?: string | undefined; description?: string | undefined; onClose?: ((...args: any[]) => void) | undefined; showSecondaryAction?: boolean | undefined; secondaryActionProps?: { onClick: (...args: any[]) => void; labelText: string; } | undefined; primaryActionProps?: { onClick: (...args: any[]) => void; labelText: string; } | undefined; isOpen?: boolean | undefined; children?: undefined; }): React.JSX.Element | null; displayName: string; }; declare const ModalWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{ zIndex?: number | undefined; title?: string | undefined; description?: string | undefined; onClose?: ((...args: any[]) => void) | undefined; showSecondaryAction?: boolean | undefined; secondaryActionProps?: { onClick: (...args: any[]) => void; labelText: string; } | undefined; primaryActionProps?: { onClick: (...args: any[]) => void; labelText: string; } | undefined; isOpen?: boolean | undefined; children?: undefined; }>; export { Modal, ModalWithSchema };