import { TableCellBaseElement } from './abstracts/TableCellBaseElement'; import type { ITableFooterCellElementProps } from './ITableFooterCellElementProps'; declare const TableFooterCellElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof TableCellBaseElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Table Footer Cell - A single cell within a table footer row. * * @element mosaik-table-footer-cell * * @slot - The default slot. * * @csspart text - The text part. * * @cssprop {String} --table-footer-cell-background-color - The cell background color CSS custom property. * @cssprop {String} --table-footer-cell-border-color - The cell border color CSS custom property. * @cssprop {String} --table-footer-cell-border-radius - The cell border radius CSS custom property. * @cssprop {String} --table-footer-cell-border-width - The cell border width CSS custom property. * @cssprop {String} --table-footer-cell-font-family - The cell font family CSS custom property. * @cssprop {String} --table-footer-cell-font-letter-spacing - The cell font letter spacing CSS custom property. * @cssprop {String} --table-footer-cell-font-line-height - The cell font line height CSS custom property. * @cssprop {String} --table-footer-cell-font-size - The cell font size CSS custom property. * @cssprop {String} --table-footer-cell-font-text-decoration - The cell font text decoration CSS custom property. * @cssprop {String} --table-footer-cell-font-text-transform - The cell font text transform CSS custom property. * @cssprop {String} --table-footer-cell-font-weight - The cell font weight CSS custom property. * @cssprop {String} --table-footer-cell-foreground-color - The cell foreground color CSS custom property. * @cssprop {String} --table-footer-cell-gap - The cell gap CSS custom property. * @cssprop {String} --table-footer-cell-padding-bottom - The cell padding bottom CSS custom property. * @cssprop {String} --table-footer-cell-padding-left - The cell padding left CSS custom property. * @cssprop {String} --table-footer-cell-padding-right - The cell padding right CSS custom property. * @cssprop {String} --table-footer-cell-padding-top - The cell padding top CSS custom property. * @cssprop {String} --table-footer-cell-shadow - The cell shadow CSS custom property. * @cssprop {String} --table-footer-cell-shadow-blur - The cell shadow blur CSS custom property. * @cssprop {String} --table-footer-cell-shadow-color - The cell shadow color CSS custom property. * @cssprop {String} --table-footer-cell-shadow-offset-x - The cell shadow offset x CSS custom property. * @cssprop {String} --table-footer-cell-shadow-offset-y - The cell shadow offset y CSS custom property. * @cssprop {String} --table-footer-cell-shadow-spread - The cell shadow spread CSS custom property. * @cssprop {String} --table-footer-cell-transition-duration - The cell transition duration CSS custom property. * @cssprop {String} --table-footer-cell-transition-mode - The cell transition mode CSS custom property. * @cssprop {String} --table-footer-cell-transition-property - The cell transition property CSS custom property. * @cssprop {String} --table-footer-cell-translate - The cell translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @example * Footer cell with summary: * ```html * * ``` * * @public */ export declare class TableFooterCellElement extends TableFooterCellElement_base implements ITableFooterCellElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace TableFooterCellElement { type Props = ITableFooterCellElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-table-footer-cell': TableFooterCellElement; } } export {}; //# sourceMappingURL=TableFooterCellElement.d.ts.map