import { FormSelectChoice } from '../../../lib/types/types';
interface SelectProps {
    className?: string;
    hideDropDownButton?: boolean;
    isErrored?: boolean;
    onChange: any;
    options: FormSelectChoice[];
    overrideInputClassName?: string;
    placeholder?: string;
    value?: FormSelectChoice;
}
export declare const SelectComponent: {
    ({ className, hideDropDownButton, isErrored, options, onChange, overrideInputClassName, placeholder, value, }: SelectProps): JSX.Element;
    defaultProps: {
        className: any;
        hideDropDownButton: boolean;
        isErrored: boolean;
        overrideInputClassName: any;
        placeholder: string;
        value: any;
    };
};
export {};
