/** * Python Command - drift py * * Analyze Python projects: routes, error handling, data access, async patterns. * * @requirements Python Language Support */ import { Command } from 'commander'; export interface PyOptions { format?: 'text' | 'json'; verbose?: boolean; framework?: string; } export declare function createPyCommand(): Command; //# sourceMappingURL=py.d.ts.map