import { TreeSelectProps as AntdTreeSelectProps } from 'antd/lib/tree-select'; import React from 'react'; interface TreeSelectOption { value: string; label: React.ReactNode; selectable?: boolean; options?: TreeSelectOption[]; } export interface TreeSelectProps extends AntdTreeSelectProps { options: TreeSelectOption[]; onChange?: (val: string) => void; label: string; title?: string; } export declare function TreeSelect(props: TreeSelectProps): JSX.Element; export {};