import React from "react"; import { Select as BaseSelect } from "baseui/select"; export interface SelectProps { clearable?: boolean; value: { id: string; label: string }[]; onChange: (value: any) => void; options: { id: string; label: string }[]; labelKey?: string; valueKey?: string; multi?: boolean; size?: any; placeholder?: string; } /** * This is the `