export interface PythonResponse { success: boolean; data?: T; error?: string; message?: string; } export declare function runPythonScript(action: string, params?: any): Promise>; export declare function installSkill(params: { sourcePath: string; targetCli: string; skillName: string; }): Promise; export declare function listSkills(params: { cliType: string; }): Promise>; export declare function removeSkill(params: { cliType: string; skillName: string; }): Promise; //# sourceMappingURL=index.d.ts.map