export declare const useNav: () => {
    matchEntry: "/entry/*";
    matchEntryId: "/:action/:workspace/:root?/:id?";
    matchWorkspace: "/:action/:workspace";
    matchRoot: "/:action/:workspace/:root";
    root: ({ id, ...location }: import("../DashboardNav.js").EntryLocation) => string;
    entry: (location: import("../DashboardNav.js").EntryLocation) => string;
    draft: (location: import("../DashboardNav.js").EntryLocation) => string;
    create: (location: import("../DashboardNav.js").EntryLocation) => string;
};
