zy-react-library/components/SelectTree/HiddenPart/Gwj/index.d.ts

16 lines
413 B
TypeScript
Raw Normal View History

2025-11-11 16:02:50 +08:00
import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
/**
*
*/
export interface HiddenPartSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
}
/**
*
*/
declare const HiddenPartSelectTree: FC<HiddenPartSelectTreeProps>;
export default HiddenPartSelectTree;