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