import { GroupBase } from "react-select"; import { CreatableProps as ReactCreatableProps } from "react-select/creatable"; import { CreatableSelectProps } from "./CreatableSelect"; /** * A hook used by creatable selects that extends useSelect with creatable-specific functionality * * @template TOption - The type of option objects in the select * @template TIsAsync - Boolean flag indicating if the select is async * @template TIsMulti - Boolean flag indicating if the select allows multiple selections * @template TGroup - The group type for grouped options * @param props - The props for the CreatableSelect component * @returns {ReactCreatableProps} Props for react-select creatable component */ export declare const useCreatableSelect: = GroupBase>(props: CreatableSelectProps) => ReactCreatableProps;