import { Cre8Element } from '../cre8-element'; import '../button/button'; import '../table-cell/table-cell'; /** * @slot - The component content */ export declare class Cre8TableRow extends Cre8Element { static styles: import("lit").CSSResult[]; toggleIsExpanded(): void; /** * Visually show additional expandable content */ isExpanded?: boolean; /** * Indicates row has additional visually hidden related content */ isExpandable?: boolean; /** * Style variants * * * */ variant?: 'bare'; /** * Expanded button text */ expandedButtonText: string; /** * Expand button text */ collapsedButtonText: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-table-row': Cre8TableRow; } } export default Cre8TableRow; //# sourceMappingURL=table-row.d.ts.map