export declare enum EventType { Change = 'change', Blur = 'blur', Focus = 'focus', Input = 'input', } export type InputInteractionEvent = { id?: string; value?: string; }; export type InputInputEvent = InputInteractionEvent & { inputType?: string; }; export type RadioAndCheckboxChangeEvent = InputInteractionEvent & { checked: boolean; }; export type InputFocusBlurEvent = InputInteractionEvent & { focused: boolean; }; export type InputType = HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement | null;