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