import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PackedElementField } from "./foxglove/PackedElementField"; import { Pose } from "./foxglove/Pose"; export interface RadarSpoke { $type: "keelson.RadarSpoke"; /** Timestamp of radar spoke */ timestamp: Date | undefined; /** Frame of reference */ frameId: string; /** The origin of the radar spoke relative to the frame of reference */ pose: Pose | undefined; /** Azimuth angle [rad] of this spoke */ azimuth: number; /** Range of radar spoke */ range: number; /** Fields in `data`. Generally just one field with the ´intensity´. */ fields: PackedElementField[]; /** Intensities */ data: Uint8Array; } export interface RadarSweep { $type: "keelson.RadarSweep"; spokes: RadarSpoke[]; } export declare const RadarSpoke: MessageFns; export declare const RadarSweep: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | "$type">]: never; }; interface MessageFns { readonly $type: V; encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {};