/** * @license * Copyright 2022 Superflow.dev * SPDX-License-Identifier: MIT */ import { LitElement, PropertyValueMap } from 'lit'; /** * SfMultiselectSearch 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 * @property mode - mode of operation * @property selectedId - id to preselect * @property selectedValue - callback function */ export declare class SfMultiselectSearch extends LitElement { static styles: import("lit").CSSResult; mode: string; readonly: boolean; listname: string; listelements: { name: string; id: string; }[]; listselection: { [key: string]: boolean; }; selectedValues: () => { [key: string]: boolean; }; selectedValuesNames: () => { [key: string]: any; }; dispatchValueChanged: () => void; initListeners: () => void; populateSelectedList: () => void; populateList: (applyFlag?: boolean) => void; loadMode: () => Promise; protected firstUpdated(_changedProperties: PropertyValueMap | Map): void; connectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { } } //# sourceMappingURL=sf-multiselect-search.d.ts.map