import React from 'react'; import { DataValue } from './types'; export interface PathEntryProps { name: string; value: DataValue; isActive: boolean; isCollection?: boolean; onClick: () => void; className?: string; } export declare const PathEntry: React.FC;