import { ISelectDropdownProps } from "../SelectDropdown/SelectDropdown.interface"; import { ReactNode } from "react"; export type ICreatableSelectProps = ISelectDropdownProps & { id: string; createLabel?: string; createOptionPosition?: "first" | "last"; isValidNewOption?: (inputValue: string) => boolean; onCreateOption?(inputValue: string): void; allowCreateWhileLoading?: boolean; formatCreateLabel?: (inputValue: string) => ReactNode; };