import { LitElement } from 'lit'; export declare enum LABEL_POSITION { TOP = "top", CENTER = "center", BOTTOM = "bottom" } /** * MetaData component. * @slot icon - Slot for icon. * @slot label - Slot for label. * @slot unnamed - Slot for body/other content. */ export declare class MetaData extends LitElement { static styles: import("lit").CSSResult; /** Horizontal orientation. */ accessor horizontal: boolean; /** No background. */ accessor noBackground: boolean; /** Adds scrollable overflow to the slot content. */ accessor scrollableContent: boolean; /** Determine the icon slot has content. * @ignore */ accessor iconSlotItems: Array; /** Determine the icon slot has content. * @ignore */ accessor labelSlotItems: Array; /** Determine the icon slot has content. * @ignore */ private accessor hasIcon; /** Determine the label slot has content. * @internal */ private accessor hasLabel; render(): import("lit-html").TemplateResult<1>; private onIconSlotChange; private onLabelSlotChange; } declare global { interface HTMLElementTagNameMap { 'kyn-meta-data': MetaData; } } //# sourceMappingURL=metaData.d.ts.map