import type { DirectiveClass, DirectiveResult } from 'lit/directive.js'; import { UsBaseElement } from '../base/UsBaseElement'; import type { ITableCellProps } from './model/ITableCellProps'; declare global { interface HTMLElementTagNameMap { 'us-table-cell': UsTableCell; } } export declare class UsTableCell extends UsBaseElement implements ITableCellProps { static styles: import("lit").CSSResultGroup[]; header: boolean; hover: boolean; render(): import("lit").TemplateResult<1>; getCellClasses(): DirectiveResult; }