import * as React from 'react'; import { MarginClassProps } from '../../utilities/marginClasses'; import { CommonProps } from '../../utilities/commonProps'; declare type Props = { children?: React.ReactNode; } & MarginClassProps & CommonProps; export default function GridWrapper(props: Props): React.ReactElement; export {};