import { Component, LegacyRef, ReactNode } from 'react';
import { ViewComponentProps } from '../core/ViewComponent';
export interface OptionProps extends ViewComponentProps {
    /**
     * 选项值
     */
    value?: any;
    ref?: LegacyRef<any>;
    children?: ReactNode;
}
export default class Option extends Component<OptionProps, any> {
    static __PRO_OPTION: boolean;
}
