import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface GridProps { children: ReactNode; className?: string | null; } /** * The carbon-labs MDX package allows for easy use of the Carbon `` and `` * components. See full docs in the Carbon React Storybook. * https://react.carbondesignsystem.com/?path=/story/elements-grid--default * * Additionally, this package also supports the Gatsby theme's `` and ``. * See full docs in the Carbon theme Gatsby website. * https://gatsby.carbondesignsystem.com/components/Grid/ */ export declare const Grid: MdxComponent; export {};