export interface InAppInspectorMetroOptions { apkPath?: string; endpoint?: string; } export interface BuildJob { status: 'idle' | 'running' | 'completed' | 'failed'; scheme: string; clean: boolean; progress: number; currentTask: string; logs: string[]; error: string | null; startedAt: string | null; completedAt: string | null; apkName: string | null; apkSize: number | null; } export declare function getLanIpAddresses(): { primary: string; all: string[]; }; export declare function stopGradleBuild(): BuildJob; export declare function withInAppInspector(metroConfig?: any, options?: InAppInspectorMetroOptions): any; export declare function startStandaloneServer(port?: number): any; export default withInAppInspector;