import React from 'react';
import { FieldProps } from '../types';
type SelectInputOption = {
    value: string;
    disabled: boolean;
};
type SelectFieldProps = FieldProps & {
    options: SelectInputOption[];
    placeholderText?: React.ReactNode;
    isCreatable?: boolean;
    hasOnCreateOption?: boolean;
};
declare const SelectField: React.FC<SelectFieldProps>;
export default SelectField;
