import React from 'react'; import { FlatList, FlatListProps } from 'react-native'; export declare const DynamicFlatList: React.ForwardRefExoticComponent & { singularMessage: string; pluralMessage: string; isPlural?: ((count: number) => boolean) | undefined; } & React.RefAttributes>>;