import { NativeGridProps, Grid as BaseGrid } from './Grid'; import { GridItem } from './Item'; type GridComponent = typeof BaseGrid & { Item: typeof GridItem; }; declare const Grid: GridComponent; export type { NativeGridProps }; export type { NativeGridProps as GridProps }; export type { GridItemProps, GridItemLayoutProps } from './Item'; export default Grid;