import React, { RefObject } from 'react'; import { SelectOptionType } from '@chargify/custom-ui-components'; type SelectFieldProps = { value: string | number; label: string; name: string; options: SelectOptionType[]; error?: string; required?: boolean; placeholder?: string; onChange: (value: string | number) => void; onValidateField: (value: string | number) => void; isLoadingOptions?: boolean; selectOptionLabel: string; searchLabel: string; targetElementRef?: RefObject; }; declare const SelectField: ({ value, label, name, options, error, required, placeholder, onChange, onValidateField, selectOptionLabel, searchLabel, isLoadingOptions, targetElementRef, }: SelectFieldProps) => React.JSX.Element; export default SelectField;