import { ViewProps } from "@tarojs/components/types/View"; import { CSSProperties, ReactNode } from "react"; interface TreeSelectOptionProps extends ViewProps { className?: string; style?: CSSProperties; disabled?: boolean; value?: any; children?: ReactNode; } declare function TreeSelectOption(props: TreeSelectOptionProps): JSX.Element; export default TreeSelectOption;