import React, { ReactNode } from 'react';
import { MessageBoxFunctionalLayoutProps } from '../MessageBoxFunctionalLayout.types';
export declare const FooterLayout: ({ bottomChildren, theme, cancelText, cancelPrefixIcon, cancelSuffixIcon, onCancel, onOk, confirmText, confirmPrefixIcon, confirmSuffixIcon, buttonsHeight, enableOk, enableCancel, sideActions, }: Pick<MessageBoxFunctionalLayoutProps, "buttonsHeight" | "confirmText" | "cancelText" | "cancelPrefixIcon" | "cancelSuffixIcon" | "onCancel" | "onOk" | "confirmPrefixIcon" | "confirmSuffixIcon" | "sideActions" | "theme"> & {
    enableOk: boolean;
    enableCancel: boolean;
    bottomChildren: ReactNode;
}) => React.JSX.Element;
//# sourceMappingURL=FooterLayout.d.ts.map