import { FC } from 'react'; import { OptionsSelectType } from '../types'; import { Styles } from 'react-select'; export declare type LogistixFieldPropsType = { placeholder?: string; isRequired?: boolean; styles?: Partial; loadingMessage?: string; value?: OptionsSelectType; inputClassName?: string; inputClassNamePrefix?: string; onChange: (value: OptionsSelectType) => void; }; declare const LogistixField: FC; export default LogistixField;