/// import GridItem from './GridItem'; declare const GridNamespace: { (props: import("./type").GridProps): JSX.Element; defaultProps: { center: boolean; border: boolean; columnNum: number; }; } & { Item: import("react").MemoExoticComponent<(props: import("./type").GridItemProps & { parent?: import("./type").GridProps | undefined; index?: number | undefined; }) => JSX.Element>; }; export default GridNamespace; export { GridNamespace as Grid, GridItem }; export type { GridProps, GridItemProps, GridDirection } from './type';