import { LitElement } from 'lit';
/**
* `kyn-tfoot` Web Component.
*
* Represents a custom table foot (`
`) for Shidoka's design system tables.
* Designed to contain and style table footer rows (``) and footer cells (`| `).
*
* @slot unnamed - The content slot for adding table foot rows.
*/
export declare class TableFoot extends LitElement {
static styles: import("lit").CSSResult;
/** aria role.
* @internal
*/
accessor role: string;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'kyn-tfoot': TableFoot;
}
}
//# sourceMappingURL=table-foot.d.ts.map |