import React from "react"; import { TreeSelectProps } from "antd/lib/tree-select"; declare const TreeNode: React.FC; declare const SHOW_ALL: "SHOW_ALL"; declare const SHOW_PARENT: "SHOW_PARENT"; declare const SHOW_CHILD: "SHOW_CHILD"; declare type TreeNodeValue = string | number | string[] | number[]; interface FTSProps extends TreeSelectProps { forwardedRef?: any; } interface FCProps extends React.FC { TreeNode: typeof TreeNode; SHOW_ALL: typeof SHOW_ALL; SHOW_PARENT: typeof SHOW_PARENT; SHOW_CHILD: typeof SHOW_CHILD; } export declare const TreeSelect: FCProps; declare const _default: (React.NamedExoticComponent> & { readonly type: React.ForwardRefExoticComponent>; } & FCProps) | (React.NamedExoticComponent & FCProps); export default _default;