interface SetupTool { name: string; description: string; input_schema: { type: 'object'; properties: Record; required: string[]; }; handler: (input: any) => Promise; } export declare function createSetupTools(clientInfo: any): SetupTool[]; export {}; //# sourceMappingURL=setup-tools.d.ts.map