/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult, PropertyValues } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile icon component. * * @tag nile-table-header-item * */ export declare class NileTableHeaderItem extends NileElement { private readonly hasSlotController; /** * The styles for TableHeaderItem * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; /** Enables the sort functionality. */ havesort: boolean; /** Enables the sort functionality. */ havefilter: boolean; /** Places the icon . */ iconName: string; /** Enables the resize functionality. */ resizable: boolean; sorting_ct: number; protected updated(changedProperties: PropertyValues): void; /** * Render method * @slot This is a slot test */ private handleSort; private handleSearch; private handleResizeStart; render(): TemplateResult; } export default NileTableHeaderItem; declare global { interface HTMLElementTagNameMap { 'nile-table-header-item': NileTableHeaderItem; } }