export interface NativeOtelRecord { signal: "traces" | "logs" | "metrics"; contentType?: string; body: Record | string; } export interface NativeOtelCapture { env: Record; args: string[]; correlationId: string; drain(): Promise; } export declare function startNativeOtelCapture(agentId: string, content?: boolean): Promise;