import React from 'react';
import { SelectOption } from './select.types';
type Props = {
    value: string;
    handleOnChange: React.ChangeEventHandler<HTMLSelectElement>;
    disabled?: boolean;
    fullWidth?: boolean;
    options?: SelectOption[];
};
declare function Select({ value, handleOnChange, disabled, fullWidth, options, }: Props): React.JSX.Element;
export { Select };
//# sourceMappingURL=select.d.ts.map