import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "google.protobuf"; export interface DoubleValue { value: number; } export interface FloatValue { value: number; } export interface Int64Value { value: string; } export interface UInt64Value { value: string; } export interface Int32Value { value: number; } export interface UInt32Value { value: number; } export interface BoolValue { value: boolean; } export interface StringValue { value: string; } export interface BytesValue { value: Uint8Array; } export declare const DoubleValue: MessageFns; export declare const FloatValue: MessageFns; export declare const Int64Value: MessageFns; export declare const UInt64Value: MessageFns; export declare const Int32Value: MessageFns; export declare const UInt32Value: MessageFns; export declare const BoolValue: MessageFns; export declare const StringValue: MessageFns; export declare const BytesValue: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.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; } & { [K in Exclude>]: never; }; export interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {}; //# sourceMappingURL=wrappers.d.ts.map