import React from 'react'; import { BaseProps } from '../_utils/props'; import { NativeSelectGroupProps } from './group'; import { NativeSelectOptionProps } from './option'; export declare type NativeSelectSize = 'sm' | 'md' | 'lg'; export interface NativeSelectProps extends BaseProps { size?: NativeSelectSize; disabled?: boolean; children: React.ReactElement; } declare const NativeSelect: React.FC & { Group?: any; Option?: any; }; export default NativeSelect;