import "./TreeWithHeader.scss"; import type { PropsWithChildren, ReactNode } from "react"; import type { TreeFilteringProps } from "./TreeHeader.js"; /** @beta */ interface TreeWithHeaderProps { density?: "enlarged" | "default"; filteringProps?: TreeFilteringProps; buttons?: ReactNode; } /** @beta */ export declare function TreeWithHeader({ filteringProps, buttons, density, children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=TreeWithHeader.d.ts.map