import { CdrReader, CdrWriter } from "@foxglove/cdr"; import { EntityKind } from "./enums"; export declare type EntityId = number; export declare function makeEntityId(key: number, kind: EntityKind): EntityId; export declare function entityIdFromString(value: string): EntityId; export declare function entityIdFromData(view: DataView, offset: number): EntityId; export declare function entityIdFromCDR(reader: CdrReader): EntityId; export declare function writeEntityId(id: EntityId, output: DataView, offset: number): void; export declare function writeEntityIdToCDR(id: EntityId, output: CdrWriter): void; export declare function entityIdToString(id: EntityId): string; //# sourceMappingURL=EntityId.d.ts.map