import { type TemplateResult } from "lit"; import { GlobalStyle } from "../../internal/global-style.js"; /** * {@linkcode Grid} provides gird layout. * * @slot - Grid items. * @category layout */ declare class Grid extends GlobalStyle { /** * CSS property `gap`. */ gap: string; /** * CSS property `grid-template-columns`. * * If columns is numerical, divide columns equally. */ columns: string | number; /** * CSS property `grid-template-rows`. * * If rows is numerical, divide rows equally. */ rows: string | number; /** * CSS property `place-content` (`align-content justify-content`). */ content: string; /** * CSS property `place-items` (`align-items justify-items`). */ items: string; constructor(); protected render(): TemplateResult<1>; } export default Grid; export { Grid };