import { z } from 'zod'; /** * Schema for creating a new wiki page in Azure DevOps */ export declare const CreateWikiPageSchema: z.ZodObject<{ organizationId: z.ZodNullable>; projectId: z.ZodNullable>; wikiId: z.ZodString; pagePath: z.ZodDefault>>; content: z.ZodString; comment: z.ZodOptional; }, "strip", z.ZodTypeAny, { content: string; wikiId: string; pagePath: string | null; projectId?: string | null | undefined; organizationId?: string | null | undefined; comment?: string | undefined; }, { content: string; wikiId: string; projectId?: string | null | undefined; organizationId?: string | null | undefined; comment?: string | undefined; pagePath?: string | null | undefined; }>;