import { z } from "zod"; import type { StorageClient } from "../storage/client.js"; export declare const createPagesInputSchema: z.ZodObject<{ pages: z.ZodEffects>; 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; }>, "many">, { body: string; name: string; title: string; tags?: string[] | undefined; summary?: string | undefined; }[], unknown>; verbose: z.ZodDefault>; runLabel: z.ZodOptional; logTiming: z.ZodDefault>; }, "strip", z.ZodTypeAny, { pages: { body: string; name: string; title: string; tags?: string[] | undefined; summary?: string | undefined; }[]; verbose: boolean; logTiming: boolean; runLabel?: string | undefined; }, { pages?: unknown; verbose?: unknown; runLabel?: string | undefined; logTiming?: unknown; }>; export type CreatePagesInput = z.infer; export declare function createPages(drive: StorageClient, input: CreatePagesInput, userId?: string): Promise; //# sourceMappingURL=createPages.d.ts.map