import { openDatabase } from "@/system/openDatabase.js"; export type PagesDatabase = NonNullable>>; export declare const DEFAULT_LOCALE = "default"; export declare const getLocale: (locale: string | null | undefined) => string; export declare const normalizeSlug: (value: string) => string; export declare const getFolderId: (dataJson: Record, documentUuid: string) => string | null; export declare const resolveFolders: (input: unknown) => Record; export declare const runInTransaction: (db: PagesDatabase, run: () => T) => T;