import React from 'react'; import type { GridProps } from './types'; /** * __Grid__ * * A grid contains one or more `GridColumn` to provide a grid layout. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/page) */ declare const GridWrapper: ({ spacing: spacingProp, columns: columnsProp, layout, testId, children, theme, }: GridProps) => React.JSX.Element; export default GridWrapper;