/** * @fileoverview Shared FEC ID format validators for tool handlers. * Validates candidate_id and committee_id formats before hitting the API, * producing clear error messages instead of silent empty results. * @module src/mcp-server/tools/definitions/id-validators */ /** Throw validationError if `candidateId` doesn't match the FEC candidate ID pattern. */ export declare function validateCandidateId(candidateId: string): void; /** Throw validationError if `committeeId` doesn't match the FEC committee ID pattern. */ export declare function validateCommitteeId(committeeId: string): void; //# sourceMappingURL=id-validators.d.ts.map