import { ServiceContainer } from '../index.js';
export declare const createVSCodeSessionTool: {
    definition: {
        name: string;
        description: string;
        inputSchema: {
            type: string;
            properties: {
                language: {
                    type: string;
                    enum: string[];
                    description: string;
                };
                template: {
                    type: string;
                    enum: string[];
                    description: string;
                };
                memory: {
                    type: string;
                    enum: string[];
                    description: string;
                };
            };
            required: never[];
        };
    };
    execute(input: unknown, services: ServiceContainer): Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=CreateVSCodeSessionTool.d.ts.map