import { ReactElement } from 'react'; import { LayerProps } from '../Layer/types'; interface BaseGridListProps { numColumns: number; renderItem: (item: T, index: number) => JSX.Element; data: T[]; } export interface GridListProps extends LayerProps, BaseGridListProps { } export interface GridProps extends Omit { children: ReactElement | ReactElement[]; } export declare type GridItemProps = Omit; export declare function extractGridItemProps({ flex, height, width }: GridItemProps): string; export {};