type PageStatus = "draft" | "published" | "archived"; export declare const load: () => Promise; export declare const loadById: (uuid: string) => Promise; export declare const persist: (status?: PageStatus) => void; export declare const setTitle: (title: string) => void; export declare const commitTitleBlurOnCreate: (title: string) => void; export declare const setSlug: (slug: string) => void; export declare const setContent: (content: string) => void; export declare const commitEditorChanges: () => void; export declare const applySlugFromTitle: (title?: string) => void; export declare const deleteById: (uuid: string) => Promise; export declare const startCreate: () => void; export declare const setStatusById: (uuid: string, status: PageStatus) => Promise; export {};