import Choices from "choices.js"; import type { StyleSheetLike } from "../../core/dom"; import type * as p from "../../core/properties"; import { InputWidget, InputWidgetView } from "./input_widget"; export declare class MultiChoiceView extends InputWidgetView { model: MultiChoice; input_el: HTMLSelectElement; choice_el: Choices; connect_signals(): void; stylesheets(): StyleSheetLike[]; protected _render_input(): HTMLElement; render(): void; set_disabled(): void; protected get _current_values(): string[]; change_input(): void; } export declare namespace MultiChoice { type Attrs = p.AttrsOf; type Props = InputWidget.Props & { value: p.Property; options: p.Property<(string | [string, string])[]>; max_items: p.Property; delete_button: p.Property; placeholder: p.Property; option_limit: p.Property; search_option_limit: p.Property; solid: p.Property; }; } export interface MultiChoice extends MultiChoice.Attrs { } export declare class MultiChoice extends InputWidget { properties: MultiChoice.Props; __view_type__: MultiChoiceView; constructor(attrs?: Partial); } //# sourceMappingURL=multi_choice.d.ts.map