import type { GridColumnProps } from './types'; /** * __Grid column__ * * A grid column can span one or more column positions within a grid. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/page) */ declare const GridColumn: ({ medium, children, testId }: GridColumnProps) => JSX.Element; export default GridColumn;