import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { Tree } from "./Tree.js"; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithRootId: Story; export declare const WithDefaultOpenNodesIds: Story; export declare const WithActiveNodes: Story; export declare const WithLoadingNodes: Story; interface CustomData { foo: string; bar: number; } type StoryWithCustomData = StoryObj>; export declare const WithCustomData: StoryWithCustomData; export declare const WithOnDropCallback: Story; export declare const WithOnChangeOpenCallback: Story; export declare const WithCanDrag: Story; export declare const WithCanDrop: Story; interface CustomRenderData { icon: React.ReactElement; } type StoryWithCustomNodeRenderer = StoryObj>; export declare const WithCustomNodeRenderer: StoryWithCustomNodeRenderer; interface CustomSortCallbackData { order: number; } type WithCustomSortCallbackRenderer = StoryObj>; export declare const WithCustomSortCallback: WithCustomSortCallbackRenderer;