import * as React from 'react'; export interface ListFooterProps { /** web only */ prefixCls?: string; style?: React.CSSProperties; /** web only */ className?: string; onClick?: Function; children?: any; } export default class ListFooter extends React.Component { static propTypes: { prefixCls: React.Requireable; }; static defaultProps: { prefixCls: string; }; render(): JSX.Element; }