import * as React from 'react'; import * as T from '../../PresentationTypes'; export interface InjectedSelectedPathProps { selectedPath: T.Path; prevSelectedPath: T.Path; setSelectedPath: (path: T.Path) => any; } declare type Omit = Pick>; declare type Subtract = Omit; export default function withSelectedPath(Component: React.ComponentType): React.ComponentClass>; export {};