/** * @fileoverview Search coordinated party expenditures (Schedule F) — spending a * party committee makes on behalf of its own candidate, under a separate legal * limit from contributions and distinct from independent expenditures. * @module mcp-server/tools/definitions/search-coordinated-expenditures.tool */ import { z } from '@cyanheads/mcp-ts-core'; export declare const searchCoordinatedExpenditures: import("@cyanheads/mcp-ts-core").ToolDefinition; candidate_id: z.ZodOptional; cycle: z.ZodOptional; payee_name: z.ZodOptional; min_date: z.ZodOptional; max_date: z.ZodOptional; min_amount: z.ZodOptional; max_amount: z.ZodOptional; sort: z.ZodOptional>; page: z.ZodDefault; per_page: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ results: z.ZodArray>; committee: z.ZodOptional>; pagination: z.ZodObject<{ page: z.ZodNumber; pages: z.ZodNumber; count: z.ZodNumber; per_page: z.ZodNumber; }, z.core.$strip>; search_criteria: z.ZodObject<{}, z.core.$loose>; }, z.core.$strip>, undefined, { readonly totalCount: z.ZodNumber; readonly notice: z.ZodOptional; }>; //# sourceMappingURL=search-coordinated-expenditures.tool.d.ts.map