import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message common.v1.ObjectRef */ export declare class ObjectRef 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: typeof proto3; static readonly typeName = "common.v1.ObjectRef"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ObjectRef; static fromJson(jsonValue: JsonValue, options?: Partial): ObjectRef; static fromJsonString(jsonString: string, options?: Partial): ObjectRef; static equals(a: ObjectRef | PlainMessage | undefined, b: ObjectRef | PlainMessage | undefined): boolean; }