import { CustomElement } from '../../Abstracts/CustomElement'; import { ITableBodyElementProps } from './ITableBodyElementProps'; declare const TableBodyElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Table Body - The main content area of a table component, containing rows of data. * * @element mosaik-table-body * * @slot - The default slot. * * @cssprop {String} --table-body-background-color - The body background color CSS custom property. * @cssprop {String} --table-body-border-color - The body border color CSS custom property. * @cssprop {String} --table-body-border-radius - The body border radius CSS custom property. * @cssprop {String} --table-body-border-style - The body border style CSS custom property. * @cssprop {String} --table-body-border-width - The body border width CSS custom property. * @cssprop {String} --table-body-font-family - The body font family CSS custom property. * @cssprop {String} --table-body-font-letter-spacing - The body font letter spacing CSS custom property. * @cssprop {String} --table-body-font-line-height - The body font line height CSS custom property. * @cssprop {String} --table-body-font-size - The body font size CSS custom property. * @cssprop {String} --table-body-font-text-decoration - The body font text decoration CSS custom property. * @cssprop {String} --table-body-font-text-transform - The body font text transform CSS custom property. * @cssprop {String} --table-body-font-weight - The body font weight CSS custom property. * @cssprop {String} --table-body-foreground-color - The body foreground color CSS custom property. * @cssprop {String} --table-body-gap - The body gap CSS custom property. * @cssprop {String} --table-body-padding-bottom - The body padding bottom CSS custom property. * @cssprop {String} --table-body-padding-left - The body padding left CSS custom property. * @cssprop {String} --table-body-padding-right - The body padding right CSS custom property. * @cssprop {String} --table-body-padding-top - The body padding top CSS custom property. * @cssprop {String} --table-body-shadow - The body shadow CSS custom property. * @cssprop {String} --table-body-shadow-blur - The body shadow blur CSS custom property. * @cssprop {String} --table-body-shadow-color - The body shadow color CSS custom property. * @cssprop {String} --table-body-shadow-offset-x - The body shadow offset x CSS custom property. * @cssprop {String} --table-body-shadow-offset-y - The body shadow offset y CSS custom property. * @cssprop {String} --table-body-shadow-spread - The body shadow spread CSS custom property. * @cssprop {String} --table-body-transition-duration - The body transition duration CSS custom property. * @cssprop {String} --table-body-transition-mode - The body transition mode CSS custom property. * @cssprop {String} --table-body-transition-property - The body transition property CSS custom property. * @cssprop {String} --table-body-translate - The body translate CSS custom property. * * @example * Table body within a table: * ```html * * * * * * * * * * * * * ``` * * @public */ export declare class TableBodyElement extends TableBodyElement_base implements ITableBodyElementProps { private readonly _inheritance; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; /** * Reflects inherited alternating flag as a host attribute for CSS styling. * * Note: The inheritance consumer triggers `requestUpdate('alternating', …)`, * but `alternating` is not a declared Lit property on this element. * Lit's `requestUpdate` reads `this['alternating']` (undefined) and compares * it to the old value, causing a no-op. Therefore we sync the attribute on * every update instead of checking `changedProperties`. * * @protected * @override */ protected updated(changedProperties: Map): void; } /** * @public */ export declare namespace TableBodyElement { type Props = ITableBodyElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-table-body': TableBodyElement; } } export {}; //# sourceMappingURL=TableBodyElement.d.ts.map