import { LitElement } from 'lit'; /** * `kyn-table-toolbar` Web Component. * * This component provides a toolbar for tables, primarily featuring a title and additional content. * The title is rendered prominently, while the slot can be used for controls, buttons, or other interactive elements. * * @slot unnamed - The primary content slot for controls, buttons, or other toolbar content. */ export declare class TableToolbar extends LitElement { static styles: import("lit").CSSResult; /**The title for the toolbar */ accessor tableTitle: string; /**The subtitle for the toolbar */ accessor tableSubtitle: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'kyn-table-toolbar': TableToolbar; } } //# sourceMappingURL=table-toolbar.d.ts.map