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