import * as React from 'react'; import { IconElement } from '../../common'; import {PropsWithChildren} from "react"; export interface FooterLayoutProps { confirmText?: React.ReactNode; confirmPrefixIcon?: IconElement; confirmSuffixIcon?: IconElement; cancelText?: React.ReactNode; cancelPrefixIcon?: IconElement; cancelSuffixIcon?: IconElement; onCancel?: React.MouseEventHandler; onOk?: React.MouseEventHandler; enableOk?: boolean; enableCancel?: boolean; theme?: string; buttonsHeight?: string; bottomChildren?: React.ReactNode; sideActions?: React.ReactNode; } declare const FooterLayout: React.FC>; export default FooterLayout;