import { FC } from "react"; import { FRCTreeSelectProps, ALL_BUTTON, INVERT_BUTTON } from "./treeSelect"; import TreeNode from "./treeNode"; declare const SHOW_ALL: "SHOW_ALL", SHOW_CHILD: "SHOW_CHILD", SHOW_PARENT: "SHOW_PARENT"; export type FRCTreeSelectComponent = FC & { TreeNode: typeof TreeNode; SHOW_ALL: typeof SHOW_ALL; SHOW_CHILD: typeof SHOW_CHILD; SHOW_PARENT: typeof SHOW_PARENT; ALL_BUTTON: typeof ALL_BUTTON; INVERT_BUTTON: typeof INVERT_BUTTON; }; declare const TransTreeSelect: FRCTreeSelectComponent; export default TransTreeSelect; export type { FRCTreeSelectProps } from "./treeSelect";