/** * get_zimbabwean_implementations — Find Zimbabwean statutes implementing a specific * EU directive/regulation or international convention. * * Zimbabwe is not an EU member, but its laws often align with international frameworks: * - CDPA (2021) aligns with GDPR principles * - Cybercrime provisions align with the Budapest Convention * - Electronic Transactions Act aligns with UNCITRAL Model Law */ import type Database from '@ansvar/mcp-sqlite'; import { type ToolResponse } from '../utils/metadata.js'; export interface GetZimbabweanImplementationsInput { eu_document_id: string; primary_only?: boolean; in_force_only?: boolean; } export interface ZimbabweanImplementationResult { document_id: string; document_title: string; status: string; reference_type: string; implementation_status: string | null; is_primary: boolean; reference_count: number; } export declare function getZimbabweanImplementations(db: InstanceType, input: GetZimbabweanImplementationsInput): Promise>; //# sourceMappingURL=get-zimbabwean-implementations.d.ts.map