import { z } from 'zod';
declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
export declare const listAccountsTool: {
    name: string;
    description: string;
    inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
    handler: (args: z.infer<typeof inputSchema>) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
export {};
//# sourceMappingURL=list-accounts.d.ts.map