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