import React from 'react'; export interface OptionProps { [x: string]: any; value: any; children: React.ReactNode; } export default function Option(props: OptionProps): any;