import { Cre8Element } from '../cre8-element'; /** * @slot - The component content */ export declare class Cre8TableCell extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Colspan attribute on td */ colspan?: number; /** * Style variants * * * */ variant?: 'bare'; /** * Column header text for cell to display when table is using responsive variant */ dataHeader?: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-table-cell': Cre8TableCell; } } export default Cre8TableCell; //# sourceMappingURL=table-cell.d.ts.map