/** * Multiple-Select-Vanilla * @author zhixin wen */ import { MultipleSelectInstance } from './MultipleSelectInstance.js'; import type { MultipleSelectOption } from './models/multipleSelectOption.interface.js'; /** * The multiplseSelect function is your entry to creating a MultipleSelect instance on any HTML Select Element. * You can provide a query selector as a string, a html node or an array of html nodes */ export declare const multipleSelect: (selector: ArrayLike | Node | string, config?: Partial>) => MultipleSelectInstance | MultipleSelectInstance[]; //# sourceMappingURL=multiple-select.d.ts.map