import React from 'react'; interface CustomFooterProps { onOk: (obj?: any) => void; onCancel: (obj?: any) => void; left?: any; } declare const CustomFooter: React.FC; export default CustomFooter;