/// import { GridBoxProps } from './Box/types'; import { GridRowProps } from './Row/types'; import { GridProps } from './types'; declare const NamespacedGrid: ( = keyof JSX.IntrinsicElements>(props: GridProps) => import("react").ReactElement, any> | null) & { defaultProps?: Partial | undefined; readonly hasEqualColumns?: boolean | undefined; readonly rows?: number | undefined; } & { as?: import("react").ElementType | undefined; } & { children?: import("react").ReactNode; } & Omit, "as" | keyof import("../private/utils/composers/types").ComposedGridProps | keyof { readonly columns?: import("styled-system").ResponsiveValue | undefined; readonly hasEqualColumns?: boolean | undefined; readonly rows?: number | undefined; }> & { ref?: any; }> | undefined; displayName?: string | undefined; } & { Box: import("./Box/types").GridBoxComponent; Row: import("./Row/types").GridRowComponent; }; export type { GridProps, GridBoxProps, GridRowProps }; export default NamespacedGrid;