export interface PathItem { text: string; id: string; selected?: boolean; dataPath: Array; } export interface PathProps { pathArray: Array; onSelect: (item: PathItem) => void; } export declare const Path: (props: PathProps) => import("react/jsx-runtime").JSX.Element;