import React from 'react'; import './footer.scss'; interface FooterProps { confirmText?: string; cancelText?: string; confirmLoading?: boolean; footer?: React.ReactNode | null; translation: any; onConfirm?: () => void; onCancel?: () => void; } declare const Footer: React.StatelessComponent; export default Footer;