export declare const fetchMyContacts: { name: string; description: string; inputSchema: { type: string; properties: { query: { type: string; }; }; required: never[]; }; handler: () => Promise<{ message: string; contacts: import("@iexec/web3mail").Contact[]; }>; };