import { Pathname } from '@cycle/history'; import { LocationDescriptorObject } from 'history'; declare function splitPath(path: Pathname): Pathname[]; declare function filterPath(pathParts: Pathname[], namespace: Pathname[]): Pathname; declare function makeCreateHref(namespace: Pathname[], _createHref: (pathname: LocationDescriptorObject) => Pathname): (location: import("history").History.LocationDescriptor) => string; export { splitPath, filterPath, makeCreateHref };