export type ProjectType = 'ios' | 'android' | 'unknown'; export interface ProjectInfo { type: ProjectType; name: string; path: string; srcDir: string; configFiles: string[]; } /** * Detect project type based on files in the directory */ export declare function detectProjectType(projectPath?: string): ProjectInfo; /** * Check if a command is available */ export declare function isCommandAvailable(command: string): boolean; /** * Get available tools for the project type */ export declare function getAvailableTools(projectType: ProjectType): Record; //# sourceMappingURL=detector.d.ts.map