/// export interface SelectWithCheckboxInterface { placeholder: string; items: { value: string; label: string; }[]; value: string[]; handleChange: (value: any) => void; } declare const SelectWithCheckbox: ({ placeholder, items, value, handleChange, }: SelectWithCheckboxInterface) => JSX.Element; export default SelectWithCheckbox;