/// import { SelectOption } from "../shared/types"; interface UseSelectCreatableProps { inputValue?: string; onCreateOption?: (newOption: string) => void; } export declare function useSelectCreatable({ inputValue, onCreateOption, }: UseSelectCreatableProps): { isCreatable: boolean; creatableOption: T; inputHasFocus: boolean; setInputHasFocus: import("react").Dispatch>; }; export {};