import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message } from "@bufbuild/protobuf"; /** * @generated from message prepress.v1.MockJob */ export declare class MockJob extends Message { /** * @generated from field: string id = 1; */ id: string; /** * @generated from field: string status = 2; */ status: string; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.MockJob"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): MockJob; static fromJson(jsonValue: JsonValue, options?: Partial): MockJob; static fromJsonString(jsonString: string, options?: Partial): MockJob; static equals(a: MockJob | PlainMessage | undefined, b: MockJob | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.JobsProcessingCountRequest */ export declare class JobsProcessingCountRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.JobsProcessingCountRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): JobsProcessingCountRequest; static fromJson(jsonValue: JsonValue, options?: Partial): JobsProcessingCountRequest; static fromJsonString(jsonString: string, options?: Partial): JobsProcessingCountRequest; static equals(a: JobsProcessingCountRequest | PlainMessage | undefined, b: JobsProcessingCountRequest | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.JobsProcessingCountResponse */ export declare class JobsProcessingCountResponse extends Message { /** * @generated from field: int32 count = 1; */ count: number; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.JobsProcessingCountResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): JobsProcessingCountResponse; static fromJson(jsonValue: JsonValue, options?: Partial): JobsProcessingCountResponse; static fromJsonString(jsonString: string, options?: Partial): JobsProcessingCountResponse; static equals(a: JobsProcessingCountResponse | PlainMessage | undefined, b: JobsProcessingCountResponse | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.StartNewJobRequest */ export declare class StartNewJobRequest extends Message { /** * @generated from field: string id = 1; */ id: string; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.StartNewJobRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StartNewJobRequest; static fromJson(jsonValue: JsonValue, options?: Partial): StartNewJobRequest; static fromJsonString(jsonString: string, options?: Partial): StartNewJobRequest; static equals(a: StartNewJobRequest | PlainMessage | undefined, b: StartNewJobRequest | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.StartNewJobResponse */ export declare class StartNewJobResponse extends Message { /** * @generated from field: prepress.v1.MockJob job = 1; */ job?: MockJob; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.StartNewJobResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StartNewJobResponse; static fromJson(jsonValue: JsonValue, options?: Partial): StartNewJobResponse; static fromJsonString(jsonString: string, options?: Partial): StartNewJobResponse; static equals(a: StartNewJobResponse | PlainMessage | undefined, b: StartNewJobResponse | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.GetJobRequest */ export declare class GetJobRequest extends Message { /** * @generated from field: string id = 1; */ id: string; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.GetJobRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetJobRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetJobRequest; static fromJsonString(jsonString: string, options?: Partial): GetJobRequest; static equals(a: GetJobRequest | PlainMessage | undefined, b: GetJobRequest | PlainMessage | undefined): boolean; } /** * @generated from message prepress.v1.GetJobResponse */ export declare class GetJobResponse extends Message { /** * @generated from field: prepress.v1.MockJob job = 1; */ job?: MockJob; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "prepress.v1.GetJobResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetJobResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetJobResponse; static fromJsonString(jsonString: string, options?: Partial): GetJobResponse; static equals(a: GetJobResponse | PlainMessage | undefined, b: GetJobResponse | PlainMessage | undefined): boolean; }