import { FC } from 'react'; import './index.less'; interface FooterProps { onOk: () => void; onClose: () => void; } declare const Footer: FC; export default Footer;