/** * @description an interface which defines the required properties for the custom select option objects */ export interface CustomSelectOption { value: string | number; label: string; handleClick?: (...args: any[]) => void; autoClear?: boolean; groupName?: string; }