import { FC } from 'react'; import { ImageSourcePropType } from 'react-native'; interface IEmpty { hasRows: boolean; isFetching: boolean; title?: string; text?: string; Img?: ImageSourcePropType; } /** * Empty flat list component * @constructor */ declare const Empty: FC; export { Empty as default };