import React from 'react'; import type { ICancelButtonProps, IOkButtonProps } from '../../../types'; export interface IFooterProps { /** default Footer component property - footerCustomizeArea. flexible area that will take the rest place, inner mechanism flex-grow:1 */ footerCustomizeArea?: React.ReactNode; /** default Footer component confirm Button property - click event */ onOk?: (event: React.SyntheticEvent) => void; /** default Footer component cancel Button property - click event */ onCancel?: (event: React.SyntheticEvent) => void; /** default Footer component confirm Button property - text */ okText?: React.ReactNode; /** default Footer component cancel Button property - text */ cancelText?: React.ReactNode; okButtonProps?: IOkButtonProps; cancelButtonProps?: ICancelButtonProps; } declare const Footer: React.FC; export default Footer;