import type { PageApiPayload } from "./pages.types.js"; export declare const create: (id: string, title: string, slug: string, content: string) => Promise; export declare const update: (id: string, title: string, slug: string, content: string, status: "draft" | "published" | "archived", versionId?: string | null) => Promise; export declare const saveVersion: (id: string, title: string, slug: string, content: string, status: "draft" | "published" | "archived", versionId?: string | null) => Promise; export declare const remove: (id: string) => Promise;