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