import type { ActionsBodyVersion, PageHistoryAction } from "./pages.types.js"; export declare const readUrlActionId: () => string | null; export declare const writeUrlActionId: (uuid: string, versionId: string, actionId: string) => void; export declare const writeUrlVersionId: (uuid: string, versionId: string) => void; export declare const pickAction: (uuid: string, versionId: string, actionId: string) => void; export declare const loadHistory: (uuid: string) => Promise; export declare const getActionLabel: (value: string) => string; export declare const getActionTimeLabel: (action: PageHistoryAction) => string; export declare const getBranchState: (canonicalStatus: "draft" | "published" | "archived" | null, editorMode: boolean, isCurrent: boolean, isLive: boolean) => "LIVE" | "DRAFT"; export declare const useActionsBodyModel: () => { versions: Array; actionId: string | null; ready: boolean; pick: (versionId: string, actionId: string) => void; };