/** * @license * Copyright 2022 Superflow.dev * SPDX-License-Identifier: MIT */ import { LitElement, PropertyValueMap } from 'lit'; /** * SfTableDisplay element. * @fires renderComplete - When the list is populated * @fires valueChanged - When the value is changed * @property apiId - backend api id * @property label - input label * @property name - name of the input */ export declare class SfTableDisplay extends LitElement { static styles: import("lit").CSSResult; search: boolean; tableData: any[]; tablecols: string[]; filters: { [key: string]: { [key: string]: boolean; }; }; initListeners: () => void; populateTable: (searchVal?: string) => void; processRegisterFilters: (searchVal?: string) => void; loadMode: () => Promise; protected firstUpdated(_changedProperties: PropertyValueMap | Map): void; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { } } //# sourceMappingURL=sf-table-display.d.ts.map