export default MessageBoxFunctionalLayout; /** MessageBoxFunctionalLayout */ declare function MessageBoxFunctionalLayout({ theme, buttonsHeight, disableCancel, disableConfirmation, noBodyPadding, fullscreen, withEmptyState, dataHook, title, onCancel, onOk, onClose, confirmText, confirmPrefixIcon, confirmSuffixIcon, cancelText, cancelPrefixIcon, cancelSuffixIcon, hideFooter, footerBottomChildren, closeButton, width, margin, sideActions, withFooterAction, noPadding, image, maxHeight, children, }: { theme?: string | undefined; buttonsHeight?: string | undefined; disableCancel?: boolean | undefined; disableConfirmation?: boolean | undefined; noBodyPadding?: boolean | undefined; fullscreen?: boolean | undefined; withEmptyState?: boolean | undefined; dataHook: any; title: any; onCancel: any; onOk: any; onClose: any; confirmText: any; confirmPrefixIcon: any; confirmSuffixIcon: any; cancelText: any; cancelPrefixIcon: any; cancelSuffixIcon: any; hideFooter: any; footerBottomChildren: any; closeButton: any; width: any; margin: any; sideActions: any; withFooterAction: any; noPadding: any; image: any; maxHeight: any; children: any; }): React.JSX.Element; declare namespace MessageBoxFunctionalLayout { let displayName: string; namespace propTypes { let dataHook: PropTypes.Requireable; let hideFooter: PropTypes.Requireable; let confirmText: PropTypes.Requireable; let confirmPrefixIcon: PropTypes.Requireable; let confirmSuffixIcon: PropTypes.Requireable; let cancelText: PropTypes.Requireable; let cancelPrefixIcon: PropTypes.Requireable; let cancelSuffixIcon: PropTypes.Requireable; let theme: PropTypes.Requireable; let onOk: PropTypes.Requireable<(...args: any[]) => any>; let onCancel: PropTypes.Requireable<(...args: any[]) => any>; let onClose: PropTypes.Requireable<(...args: any[]) => any>; let width: PropTypes.Requireable; let margin: PropTypes.Requireable; let title: PropTypes.Requireable; let children: PropTypes.Requireable; let maxHeight: PropTypes.Requireable>; let buttonsHeight: PropTypes.Requireable; let closeButton: PropTypes.Requireable; let disableCancel: PropTypes.Requireable; let disableConfirmation: PropTypes.Requireable; let noBodyPadding: PropTypes.Requireable; let footerBottomChildren: PropTypes.Requireable; let fullscreen: PropTypes.Requireable; let withEmptyState: PropTypes.Requireable; let sideActions: PropTypes.Requireable; let image: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=MessageBoxFunctionalLayout.d.ts.map