import { CustomEvent } from "../../../interfaces/custom.event"; export interface SelectDaysProps { errors?: { [key: string]: string[]; }; name: string; onBlur?: (e: CustomEvent) => void; onChange?: (e: CustomEvent) => void; value?: string[]; }