import type { IModelContentTreeProps } from "./IModelContentTree.js"; /** @beta */ interface IModelContentTreeComponentProps extends Pick { onPerformanceMeasured?: (featureId: string, duration: number) => void; onFeatureUsed?: (feature: string) => void; } /** * A component that renders `IModelContentTree`. * @beta */ export declare const IModelContentTreeComponent: { ({ onFeatureUsed, onPerformanceMeasured, ...props }: IModelContentTreeComponentProps): import("react/jsx-runtime.js").JSX.Element | null; /** * Id of the component. May be used when a creating a `TreeDefinition` for `SelectableTree`. * @beta */ id: string; getLabel(): string; }; export {}; //# sourceMappingURL=IModelContentTreeComponent.d.ts.map