/** * 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 function Grid({ children, className, ...props }: { [x: string]: any; children: any; className: any; }): React.FunctionComponentElement>>; export namespace Grid { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';