import React from 'react'; export interface NativeSelectOptionProps { label?: string; disabled?: boolean; selected?: boolean; value?: string; children?: React.ReactNode; } declare const Option: (props: NativeSelectOptionProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export default Option;