import { ZInput_Props } from './_Input.props'; export type ZColorInput_Props = ZInput_Props & Partial<{ /** ... */ readonly model: string | null; /** ... */ readonly placeholder: string; }>; export declare const zColorInputSlots: ("label" | "help-text")[]; export type ZColorInput_Slots = (typeof zColorInputSlots)[number]; export type ZColorInput_Events = Partial<{ /** ... */ readonly change: Required['model']; /** */ readonly blur: void; /** */ readonly validated: boolean; readonly restarted: void; }>;