import * as React from 'react'; import './style/option-group.less'; interface OptionGroupProps { label?: string; [key: string]: any; } declare const OptionGroup: React.FC; export default OptionGroup;