import { z } from 'zod';
import { GrowiClient } from '../growi-client.js';
export declare const pageExistsSchema: z.ZodObject<{
    path: z.ZodString;
}, "strip", z.ZodTypeAny, {
    path: string;
}, {
    path: string;
}>;
export type PageExistsParams = z.infer<typeof pageExistsSchema>;
export declare function pageExists(client: GrowiClient, params: PageExistsParams): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
