import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message } from "@bufbuild/protobuf"; /** * @generated from message common.v1.ObjectID */ export declare class ObjectID extends Message { /** * id of object being referenced * * @generated from field: string object_id = 1; */ objectId: string; /** * context of id, eg "job" or "cart-item" * * @generated from field: string object_type = 2; */ objectType: string; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "common.v1.ObjectID"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ObjectID; static fromJson(jsonValue: JsonValue, options?: Partial): ObjectID; static fromJsonString(jsonString: string, options?: Partial): ObjectID; static equals(a: ObjectID | PlainMessage | undefined, b: ObjectID | PlainMessage | undefined): boolean; }