import { z } from 'zod'; /** * Schema for validating wiki page update options */ export declare const UpdateWikiPageSchema: z.ZodObject<{ organizationId: z.ZodNullable>; projectId: z.ZodNullable>; wikiId: z.ZodString; pagePath: z.ZodString; content: z.ZodString; comment: z.ZodNullable>; }, "strip", z.ZodTypeAny, { content: string; wikiId: string; pagePath: string; projectId?: string | null | undefined; organizationId?: string | null | undefined; comment?: string | null | undefined; }, { content: string; wikiId: string; pagePath: string; projectId?: string | null | undefined; organizationId?: string | null | undefined; comment?: string | null | undefined; }>;