import { DevToolResponse } from '../types'; export declare class JSONFormatter { format(response: DevToolResponse): string; validate(response: DevToolResponse): ValidationResult; private validatePlatformCommands; } export interface ValidationResult { valid: boolean; errors: string[]; warnings: string[]; } //# sourceMappingURL=json-formatter.d.ts.map