interface SDKNetworkEntry { id: string; timestamp: number; method: string; url: string; status?: number; statusText?: string; duration?: number; requestHeaders: Record; requestBody?: string; responseHeaders: Record; responseBody?: string; mimeType?: string; error?: string; completed: boolean; } interface SDKConsoleEntry { id: string; timestamp: number; level: string; message: string; } type SDKResult = { success: true; data: T; } | { success: false; error: string; }; export declare function isSDKInstalled(device?: string): Promise; export declare function querySDKNetwork(options?: { count?: number; method?: string; urlPattern?: string; status?: number; }, device?: string): Promise>; export declare function getSDKNetworkEntry(id: string, device?: string): Promise>; export declare function getSDKNetworkStats(device?: string): Promise; byStatus: Record; byDomain: Record; }>>; export declare function querySDKConsole(options?: { count?: number; level?: string; text?: string; }, device?: string): Promise>; export declare function getSDKConsoleStats(device?: string): Promise; }>>; export declare function clearSDKNetwork(device?: string): Promise<{ success: boolean; count?: number; error?: string; }>; export declare function clearSDKConsole(device?: string): Promise<{ success: boolean; count?: number; error?: string; }>; export {}; //# sourceMappingURL=sdkBridge.d.ts.map