import { NodeData, NodePublicState, Tree, TreeProps, TreeState } from "./Tree.js"; import { FixedSizeList, FixedSizeListProps } from "react-window"; import { ReactNode } from "react"; //#region src/FixedSizeTree.d.ts type FixedSizeNodeData = NodeData; type FixedSizeNodePublicState = NodePublicState; type FixedSizeTreeProps = TreeProps, FixedSizeList> & Readonly>; type FixedSizeTreeState = TreeState, FixedSizeList>; declare class FixedSizeTree extends Tree, FixedSizeTreeProps, FixedSizeTreeState, FixedSizeList> { constructor(props: FixedSizeTreeProps, context: any); override render(): ReactNode; } //#endregion export { FixedSizeNodeData, FixedSizeNodePublicState, FixedSizeTree, FixedSizeTreeProps, FixedSizeTreeState }; //# sourceMappingURL=FixedSizeTree.d.ts.map