import type { ExternalSourcesTreeProps } from "./ExternalSourcesTree.js"; /** @beta */ interface ExternalSourcesTreeComponentProps extends Pick { onPerformanceMeasured?: (featureId: string, duration: number) => void; onFeatureUsed?: (feature: string) => void; } /** * A component that renders `ExternalSourcesTree`. * @beta */ export declare const ExternalSourcesTreeComponent: { ({ onFeatureUsed, onPerformanceMeasured, ...props }: ExternalSourcesTreeComponentProps): 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=ExternalSourcesTreeComponent.d.ts.map