import { UmbLitElement } from '../../../../core/lit-element/index.js'; import type { UmbBlockDataType } from '../../../block/index.js'; import type { UmbBlockEditorCustomViewConfiguration } from '../../../block-custom-view/index.js'; import '../../../../ufm/index.js'; export declare class UmbBlockGridBlockElement extends UmbLitElement { label?: string; icon?: string; index?: number; config?: UmbBlockEditorCustomViewConfiguration; unpublished?: boolean; content?: UmbBlockDataType; settings?: UmbBlockDataType; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } export default UmbBlockGridBlockElement; declare global { interface HTMLElementTagNameMap { 'umb-block-grid-block': UmbBlockGridBlockElement; } }