import { z } from "zod"; import { type StorageClient } from "../storage/client.js"; export declare const createPageInputSchema: z.ZodObject<{ name: z.ZodString; title: z.ZodString; body: z.ZodString; tags: z.ZodOptional>; summary: z.ZodOptional; }, "strip", z.ZodTypeAny, { body: string; name: string; title: string; tags?: string[] | undefined; summary?: string | undefined; }, { body: string; name: string; title: string; tags?: string[] | undefined; summary?: string | undefined; }>; export type CreatePageInput = z.infer; export declare function createPage(drive: StorageClient, input: CreatePageInput, userId?: string): Promise; //# sourceMappingURL=createPage.d.ts.map