import { CustomTokens } from './_shared'; import { ZInput_Props } from './_Input.props'; export type ZSearch_Custom = ''; export type ZSearch_Props = ZInput_Props & Partial<{ /** */ readonly model: string; /** */ readonly custom: CustomTokens; }>; export declare const zSearchSlots: ("label" | "help-text")[]; export type ZSearch_Slots = (typeof zSearchSlots)[number]; export type ZSearch_Events = Partial<{ /** ... */ readonly change: Required['model']; readonly restarted: void; }>;