import { FC } from 'react'; interface IFooter { hasRows: boolean; isFetching: boolean; } /** * Footer flat list component * @constructor */ declare const Footer: FC; export { Footer as default };