import { FC } from 'react'; import { InputProps } from 'reactstrap'; interface StateInputProps extends Omit { className?: string; countries?: string[]; disabled?: boolean; id?: string; name?: string; onChange?: (value: string | null) => any; placeholder?: string; value?: string; } declare const StateInput: FC; export default StateInput;