import { ISelectDropdownProps } from "../SelectDropdown/SelectDropdown.interface"; export interface ICreatableSelectProps extends ISelectDropdownProps { id: string; createLabel?: string; createOptionPosition?: "first" | "last"; isValidNewOption?(): boolean; onCreateOption?(inputValue: string): void; }