import { z } from 'zod'; import { CreateWikiPageSchema } from './schema'; /** * Creates a new wiki page in Azure DevOps. * If a page already exists at the specified path, it will be updated. * * @param {z.infer} params - The parameters for creating the wiki page. * @returns {Promise} A promise that resolves with the API response. */ export declare const createWikiPage: (params: z.infer, client?: { defaults?: { organizationId?: string; projectId?: string; }; put: (url: string, data: Record) => Promise<{ data: unknown; }>; }) => Promise;