/** * 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-table-body component. * * @tag nile-table-body * */ export declare class NileTableBody extends NileElement { /** * The styles for TableBody * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ defaultSlot: HTMLSlotElement; _childNodes: Array; type: 'primary' | 'secondary'; bodyStyle: string; private rows_data; private header_rows_data; private sort__index; private search__index; private hasResizableColumns; static get styles(): CSSResultArray; protected firstUpdated(_changedProperties: PropertyValues): void; private getChildren; private getIndexValue; private checkForResizableColumns; handleSlotchange(e: any): void; private handleSort; private handleSearch; render(): TemplateResult; } export default NileTableBody; declare global { interface HTMLElementTagNameMap { 'nile-table-body': NileTableBody; } }