import type { OptionData } from './types'; interface UseDropdownOptionsParams { fieldVal: any[]; fieldKey: string; servar: any; dynamicOptions: any[]; shouldSalesforceSync: boolean; repeatIndex: number | null; entityLabel: string; } interface UseDropdownOptionsReturn { options: OptionData[]; selectVal: OptionData[]; labelMap: Record; tooltipMap: Record; } /** * Handles all dropdown options building logic: * - Normalizes field values * - Determines option source (Salesforce, repeat, or default) * - Builds options with labels and tooltips */ export default function useDropdownOptions({ fieldVal, fieldKey, servar, dynamicOptions, shouldSalesforceSync, repeatIndex, entityLabel }: UseDropdownOptionsParams): UseDropdownOptionsReturn; export {}; //# sourceMappingURL=useDropdownOptions.d.ts.map