import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "bosdyn.api"; /** * Represents a chunk of (possibly serialized) data. * Chunks will be concatenated together to produce a datagram. * This is to avoid size limit restrictions in grpc implementations. */ export interface DataChunk { /** The total size in bytes of the datagram that this chunk is a part of. */ totalSize: number; /** Bytes in this data chunk. Bytes are sent sequentially. */ data: Uint8Array; } export declare const DataChunk: { encode(message: DataChunk, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DataChunk; fromJSON(object: any): DataChunk; toJSON(message: DataChunk): unknown; fromPartial]: never; }>(object: I): DataChunk; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export {}; //# sourceMappingURL=data_chunk.d.ts.map