import React from 'react'; import PropTypes from 'prop-types'; declare const Option: { (props: any): React.JSX.Element; propTypes: { optionType: PropTypes.Validator; size: PropTypes.Requireable; disabled: PropTypes.Requireable; icon: PropTypes.Requireable; iconPosition: PropTypes.Requireable; label: PropTypes.Validator; value: PropTypes.Validator>>; tooltip: PropTypes.Requireable; selected: PropTypes.Validator; onClick: PropTypes.Requireable<(...args: any[]) => any>; }; defaultProps: { size: string; disabled: boolean; icon: null; iconPosition: string; tooltip: string; onClick: () => null; }; }; export default Option; //# sourceMappingURL=Option.d.ts.map