import { ResponsiveCSSProps } from '../../util/css-props';
/**
* `Grid` is a generic layout component. It is a `
` with `display: grid`,
* and accepts responsive style props. It is intended for broad use in building
* layouts.
*
* By default, `Grid` renders a `
`. You can use the `as` prop to change
* the underlying HTML element to improve semantics and accessibility.
*
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/grid
* @see https://css-tricks.com/snippets/css/complete-guide-grid/
*/
export declare const Grid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ResponsiveCSSProps, never>;