import { FC } from 'react'; import { InputProps } from 'reactstrap'; interface CountryInputProps extends Omit { onChange?: (value: string | null) => void; placeholder?: string; value?: string; } declare const CountryInput: FC; export default CountryInput;