import { CdrReader, CdrWriter } from "@foxglove/cdr"; import { EntityId } from "./EntityId"; import { GuidPrefix } from "./GuidPrefix"; export declare type Guid = string; export declare function makeGuid(guidPrefix: GuidPrefix, entityId: EntityId): Guid; export declare function guidFromCDR(reader: CdrReader): Guid; export declare function writeGuid(guid: Guid, output: DataView, offset: number): void; export declare function writeGuidToCDR(guid: Guid, output: CdrWriter): void; export declare function guidParts(guid: Guid): [guidPrefix: GuidPrefix, entityId: EntityId]; //# sourceMappingURL=Guid.d.ts.map