import { z } from 'zod';
export type Tool = {
    method: string;
    name: string;
    description: string;
    parameters: z.ZodObject<any, any, any, any>;
    actions: {
        [key: string]: {
            [action: string]: boolean;
        };
    };
};
declare const tools: Tool[];
export default tools;
