import { z } from 'zod';
/**
 * Schema for listing wiki pages from an Azure DevOps wiki
 */
export declare const ListWikiPagesSchema: z.ZodObject<{
    organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
    wikiId: z.ZodString;
    path: z.ZodOptional<z.ZodString>;
    recursionLevel: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
    wikiId: string;
    path?: string | undefined;
    projectId?: string | null | undefined;
    organizationId?: string | null | undefined;
    recursionLevel?: number | undefined;
}, {
    wikiId: string;
    path?: string | undefined;
    projectId?: string | null | undefined;
    organizationId?: string | null | undefined;
    recursionLevel?: number | undefined;
}>;
export type ListWikiPagesOptions = z.infer<typeof ListWikiPagesSchema>;
