/** * This file centralizes the commands related to page change */ import { HistoryItem } from '../../history'; /** * Go to a new page (subprocess) of a process on the current page * @param pageid The page ID * @param text The display text of the process (to be shown on breadcrumb) */ export declare function pageChangeCommand(pageid: string, text: string): import("../history").PushAction & { /** * Go to another page (that is indepedent to the current page) * Example: triggered by going into a search result * @param history The new path to replace the current history */ type: "history"; }; /** * Go up one level */ export declare function drillUpCommand(): import("../history").PopAction & { /** * Go to another page (that is indepedent to the current page) * Example: triggered by going into a search result * @param history The new path to replace the current history */ type: "history"; }; /** * Go to another page (that is indepedent to the current page) * Example: triggered by going into a search result * @param history The new path to replace the current history */ export declare function replaceHisCommand(history: HistoryItem[]): import("../history").ReplaceAction & { type: "history"; }; //# sourceMappingURL=history.d.ts.map