import * as React from 'react'; import { InputContainer } from '../input-container/InputContainer'; import { MultiselectOption } from '../multi-select/MultiSelect'; type InputContainerProps = React.ComponentProps; export type FormSelectProps = Omit & { id?: string; name?: string; options: MultiselectOption[]; selectedValue: T | null; onChange: (value: T) => void; placeholder?: string; size?: 'sm' | 'md' | 'lg'; variant?: 'outlined' | 'filled' | 'standalone' | 'header'; onClear?: () => void; /** * Needed if T is an object and you want to use native select. * Native