import { UseFormSetValue, FieldValues, Control } from 'react-hook-form'; export interface LocationSearchSelectProps { selectedCompany?: string[] | string | number | null | undefined; control?: Control; setValue?: UseFormSetValue; fieldArrayName: string; locationFieldName?: string; label?: string; placeholder?: string; resetValue?: any; filterKey?: string; [key: string]: any; } export interface LocationFilterType { [key: string]: string[] | string | number; } export declare const LocationSearchSelect: import('react').MemoExoticComponent<(({ selectedCompany, control: propControl, setValue: propSetValue, fieldArrayName, locationFieldName, label, placeholder, resetValue, filterKey, filterField, ...dynamicSearchSelectProps }: LocationSearchSelectProps) => JSX.Element)>; export default LocationSearchSelect;