import { Testkit } from './types'; export declare function parseDsn(dsn: string): { protocol: string; project: string; host: string; }; export interface EnvelopeItemHeader { type?: string; length?: number; [key: string]: any; } export interface EnvelopeItem { header: EnvelopeItemHeader; payload: any; payloadBytes: Uint8Array; } export declare function parseEnvelope(rawBody: string | Uint8Array): EnvelopeItem[]; export declare function handleEnvelopeRequestData(requestBody: any, testkit: Testkit): void; //# sourceMappingURL=parsers.d.ts.map