import { z } from 'zod';
/**
 * Arguments for searching Confluence content
 * Matches the controller's search function parameters
 */
declare const SearchToolArgs: z.ZodObject<{
    limit: z.ZodOptional<z.ZodNumber>;
    cursor: z.ZodOptional<z.ZodString>;
    cql: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    cursor?: string | undefined;
    limit?: number | undefined;
    cql?: string | undefined;
}, {
    cursor?: string | undefined;
    limit?: number | undefined;
    cql?: string | undefined;
}>;
type SearchToolArgsType = z.infer<typeof SearchToolArgs>;
export { SearchToolArgs, type SearchToolArgsType };
