import { ServiceType } from "@protobuf-ts/runtime-rpc"; import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; import type { IBinaryWriter } from "@protobuf-ts/runtime"; import type { BinaryReadOptions } from "@protobuf-ts/runtime"; import type { IBinaryReader } from "@protobuf-ts/runtime"; import type { PartialMessage } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime"; /** * ReportPanicRequest contained the info about a panic. * * @generated from protobuf message parca.telemetry.v1alpha1.ReportPanicRequest */ export interface ReportPanicRequest { /** * Stderr from the agent that exited with an error. * * @generated from protobuf field: string stderr = 1 */ stderr: string; /** * Agent metadata. * * @generated from protobuf field: map metadata = 2 */ metadata: { [key: string]: string; }; } /** * ReportPanicResponse contains the response for a ReportPanicRequest. * * @generated from protobuf message parca.telemetry.v1alpha1.ReportPanicResponse */ export interface ReportPanicResponse { } declare class ReportPanicRequest$Type extends MessageType { constructor(); create(value?: PartialMessage): ReportPanicRequest; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportPanicRequest): ReportPanicRequest; private binaryReadMap2; internalBinaryWrite(message: ReportPanicRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message parca.telemetry.v1alpha1.ReportPanicRequest */ export declare const ReportPanicRequest: ReportPanicRequest$Type; declare class ReportPanicResponse$Type extends MessageType { constructor(); create(value?: PartialMessage): ReportPanicResponse; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReportPanicResponse): ReportPanicResponse; internalBinaryWrite(message: ReportPanicResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message parca.telemetry.v1alpha1.ReportPanicResponse */ export declare const ReportPanicResponse: ReportPanicResponse$Type; /** * @generated ServiceType for protobuf service parca.telemetry.v1alpha1.TelemetryService */ export declare const TelemetryService: ServiceType; export {}; //# sourceMappingURL=telemetry.d.ts.map