You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
331 B

import React from 'react';
import './Footer.less';
export interface FooterProps {
/**
* 自定义前缀
*/
prefixCls?: string;
onClear?: (e: React.MouseEvent) => void;
onConfirm?: (e: React.MouseEvent) => void;
disabled?: boolean;
}
declare const Footer: React.FC<FooterProps>;
export default Footer;