import { CustomElement } from '../../Abstracts/CustomElement'; import { ITableFooterElementProps } from './ITableFooterElementProps'; declare const TableFooterElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Table Footer - The bottom section of a table, typically containing summary information or actions. * * @element mosaik-table-footer * * @slot - The default slot. * * @cssprop {String} --table-footer-background-color - The footer background color CSS custom property. * @cssprop {String} --table-footer-border-color - The footer border color CSS custom property. * @cssprop {String} --table-footer-border-radius - The footer border radius CSS custom property. * @cssprop {String} --table-footer-border-style - The footer border style CSS custom property. * @cssprop {String} --table-footer-border-width - The footer border width CSS custom property. * @cssprop {String} --table-footer-font-family - The footer font family CSS custom property. * @cssprop {String} --table-footer-font-letter-spacing - The footer font letter spacing CSS custom property. * @cssprop {String} --table-footer-font-line-height - The footer font line height CSS custom property. * @cssprop {String} --table-footer-font-size - The footer font size CSS custom property. * @cssprop {String} --table-footer-font-text-decoration - The footer font text decoration CSS custom property. * @cssprop {String} --table-footer-font-text-transform - The footer font text transform CSS custom property. * @cssprop {String} --table-footer-font-weight - The footer font weight CSS custom property. * @cssprop {String} --table-footer-foreground-color - The footer foreground color CSS custom property. * @cssprop {String} --table-footer-gap - The footer gap CSS custom property. * @cssprop {String} --table-footer-padding-bottom - The footer padding bottom CSS custom property. * @cssprop {String} --table-footer-padding-left - The footer padding left CSS custom property. * @cssprop {String} --table-footer-padding-right - The footer padding right CSS custom property. * @cssprop {String} --table-footer-padding-top - The footer padding top CSS custom property. * @cssprop {String} --table-footer-shadow - The footer shadow CSS custom property. * @cssprop {String} --table-footer-shadow-blur - The footer shadow blur CSS custom property. * @cssprop {String} --table-footer-shadow-color - The footer shadow color CSS custom property. * @cssprop {String} --table-footer-shadow-offset-x - The footer shadow offset x CSS custom property. * @cssprop {String} --table-footer-shadow-offset-y - The footer shadow offset y CSS custom property. * @cssprop {String} --table-footer-shadow-spread - The footer shadow spread CSS custom property. * @cssprop {String} --table-footer-transition-duration - The footer transition duration CSS custom property. * @cssprop {String} --table-footer-transition-mode - The footer transition mode CSS custom property. * @cssprop {String} --table-footer-transition-property - The footer transition property CSS custom property. * @cssprop {String} --table-footer-translate - The footer translate CSS custom property. * * @example * Table footer with summary row: * ```html * * * * * * * * ``` * * @public */ export declare class TableFooterElement extends TableFooterElement_base implements ITableFooterElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace TableFooterElement { type Props = ITableFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-table-footer': TableFooterElement; } } export {}; //# sourceMappingURL=TableFooterElement.d.ts.map