/// import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.ai.vision.v2"; export interface Image { /** bytes with data */ content: Buffer | undefined; /** type of data */ imageType: Image_ImageType; } /** type of image */ export declare enum Image_ImageType { IMAGE_TYPE_UNSPECIFIED = 0, JPEG = 1, PNG = 2, UNRECOGNIZED = -1 } export declare function image_ImageTypeFromJSON(object: any): Image_ImageType; export declare function image_ImageTypeToJSON(object: Image_ImageType): string; export declare const Image: { encode(message: Image, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Image; fromJSON(object: any): Image; toJSON(message: Image): unknown; fromPartial, never>>(object: I): Image; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};