import { Cre8Element } from '../cre8-element'; /** * @slot - The content of the grid item */ export declare class Cre8GridItem extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Full height * 1) Stretches the item to fill the height of its row. Off by default - * only turn this on when the items in a row should line up edge to * edge regardless of how much content each one has. */ fullHeight?: boolean; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-grid-item': Cre8GridItem; } } export default Cre8GridItem; //# sourceMappingURL=grid-item.d.ts.map