import { z } from 'zod'; /** * Schema for mark issue false positive tool */ export declare const markIssueFalsePositiveToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for mark issue won\'t fix tool */ export declare const markIssueWontFixToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for mark issues false positive (bulk) tool */ export declare const markIssuesFalsePositiveToolSchema: { issue_keys: z.ZodArray; comment: z.ZodOptional; }; /** * Schema for mark issues won\'t fix (bulk) tool */ export declare const markIssuesWontFixToolSchema: { issue_keys: z.ZodArray; comment: z.ZodOptional; }; /** * Schema for add comment to issue tool */ export declare const addCommentToIssueToolSchema: { issue_key: z.ZodString; text: z.ZodString; }; /** * Schema for assign issue tool */ export declare const assignIssueToolSchema: { issueKey: z.ZodString; assignee: z.ZodOptional; }; /** * Schema for confirm issue tool */ export declare const confirmIssueToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for unconfirm issue tool */ export declare const unconfirmIssueToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for resolve issue tool */ export declare const resolveIssueToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for reopen issue tool */ export declare const reopenIssueToolSchema: { issue_key: z.ZodString; comment: z.ZodOptional; }; /** * Schema for issues tool */ export declare const issuesToolSchema: { project_key: z.ZodOptional; projects: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; component_keys: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; components: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; on_component_only: z.ZodOptional]>>>; directories: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; files: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; scopes: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("MAIN" | "TEST" | "OVERALL")[]>>>; branch: z.ZodOptional>; pull_request: z.ZodEffects>>, string | null | undefined, string | number | null | undefined>; issues: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; severity: z.ZodOptional>>; severities: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("INFO" | "MINOR" | "MAJOR" | "CRITICAL" | "BLOCKER")[]>>>; statuses: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("OPEN" | "CONFIRMED" | "REOPENED" | "RESOLVED" | "CLOSED")[]>>>; resolutions: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("REMOVED" | "FALSE-POSITIVE" | "WONTFIX" | "FIXED")[]>>>; resolved: z.ZodOptional]>>>; types: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("CODE_SMELL" | "BUG" | "VULNERABILITY" | "SECURITY_HOTSPOT")[]>>>; clean_code_attribute_categories: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("CONSISTENT" | "INTENTIONAL" | "ADAPTABLE" | "RESPONSIBLE")[]>>>; impact_severities: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("LOW" | "MEDIUM" | "HIGH")[]>>>; impact_software_qualities: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("MAINTAINABILITY" | "RELIABILITY" | "SECURITY")[]>>>; issue_statuses: z.ZodOptional, "many">, z.ZodString]>, string[] | null | undefined, string | ("OPEN" | "CONFIRMED" | "REOPENED" | "RESOLVED" | "CLOSED")[]>>>; rules: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; tags: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; created_after: z.ZodOptional>; created_before: z.ZodOptional>; created_at: z.ZodOptional>; created_in_last: z.ZodOptional>; assigned: z.ZodOptional]>>>; assignees: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; author: z.ZodOptional>; authors: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; cwe: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; owasp_top10: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; owasp_top10_v2021: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; sans_top25: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; sonarsource_security: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; sonarsource_security_category: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; languages: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; facets: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; facet_mode: z.ZodOptional>>; since_leak_period: z.ZodOptional]>>>; in_new_code_period: z.ZodOptional]>>>; s: z.ZodOptional>; asc: z.ZodOptional]>>>; additional_fields: z.ZodOptional, z.ZodString]>, string[] | null | undefined, string | string[]>>>; page: z.ZodEffects, number | null | undefined, string | undefined>; page_size: z.ZodEffects, number | null | undefined, string | undefined>; };