import { Mapping } from '../base'; import type { MappingKey } from '../base/types'; declare global { interface HTMLElementTagNameMap { 'nimble-mapping-text': MappingText; } } /** * Defines a mapping from one data value ('key' property) to display text ('text' property). * One or more may be added as children of a nimble-table-column-mapping element to define * how a specific data value should be displayed as text in that column's cells. */ export declare class MappingText extends Mapping { text?: string; } export declare const mappingTextTag = "nimble-mapping-text";