import { ZSelectInput_Props } from './_OptionsInput.props'; export type ZMultiselect_Props = ZSelectInput_Props & Partial<{ /** ... */ readonly model: T[]; }>; export declare const zMultiselectSlots: ("label" | "help-text" | "options")[]; export type ZMultiselect_Slots = (typeof zMultiselectSlots)[number]; export type ZMultiselect_Events = Partial<{ /** ... */ readonly change: Required['model']>; /** */ readonly validated: boolean; /** */ readonly blur: void; /** */ readonly search: string; /** */ readonly restarted: void; }>;