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