import * as React from 'react'; declare type FlatListWrapperProps = React.PropsWithChildren<{ rowsCount: number; columnsCount?: number; }>; export declare const ListWrapper: ({ children, rowsCount, columnsCount, }: FlatListWrapperProps) => JSX.Element; export {};