/// <reference types="react" />
interface CollectionSource {
    currentItem?: any;
    [key: string]: any;
}
export interface DataPathExplorerProps {
    path: string;
    onChange?: (value: string, props: {
        paths: string[];
    }) => void;
    additionalSources?: Record<string, CollectionSource>;
}
export declare const DataPathExplorer: import("react").FunctionComponent<DataPathExplorerProps>;
export {};
