import React from 'react'; export interface NativeSelectOptionProps { label?: string; disabled?: boolean; selected?: boolean; value?: string; children?: React.ReactNode; } const Option = (props: NativeSelectOptionProps): React.ReactElement => { const { label, disabled, value, selected, ...restProps } = props; return ( ); }; export default Option;