import type { TableColumnDurationTextCellRecord, TableColumnDurationTextColumnConfig } from '..'; import { TableColumnTextCellViewBase } from '../../text-base/cell-view'; declare global { interface HTMLElementTagNameMap { 'nimble-table-column-duration-text-cell-view': TableColumnDurationTextCellView; } } /** * A cell view for displaying duration fields as text */ export declare class TableColumnDurationTextCellView extends TableColumnTextCellViewBase { protected updateText(): void; } export declare const tableColumnDurationTextCellViewTag = "nimble-table-column-duration-text-cell-view";