import type { TOptionType, TSelectValue, TSelectUserValue } from "../config/types/index.d.mts"; type TGetInitialValueParams = { value?: TSelectUserValue; isMulti?: boolean; options?: TOptionType[]; }; /** * Computes the initial value for the select component. * Converts raw value(s) into the shape expected by `react‑select`. * @returns {TSelectUserValue} */ export declare const getInitialValue: ({ value, isMulti, options, }: TGetInitialValueParams) => TSelectValue; export {};