import { ReactElement } from 'react'; import { RecyclerViewProps } from './RecyclerView'; export interface VerticalFlatListProps extends Omit { rowHeight: number; } export declare function VerticalFlatList({ rowHeight, ...others }: VerticalFlatListProps): ReactElement;