import type { JsonReadOptions, JsonValue, JsonWriteOptions, MessageType } from "../../index.js"; export declare const protobufPackage = "google.protobuf"; /** * Wrapper message for `double`. * * The JSON representation for `DoubleValue` is JSON number. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.DoubleValue */ export interface DoubleValue { /** * The double value. * * @generated from field: double value = 1; */ value?: number; } declare const DoubleValue_Wkt: { toJson(msg: DoubleValue, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): DoubleValue; }; export declare const DoubleValue: MessageType & typeof DoubleValue_Wkt; /** * Wrapper message for `float`. * * The JSON representation for `FloatValue` is JSON number. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.FloatValue */ export interface FloatValue { /** * The float value. * * @generated from field: float value = 1; */ value?: number; } declare const FloatValue_Wkt: { toJson(msg: FloatValue, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): FloatValue; }; export declare const FloatValue: MessageType & typeof FloatValue_Wkt; /** * Wrapper message for `int64`. * * The JSON representation for `Int64Value` is JSON string. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.Int64Value */ export interface Int64Value { /** * The int64 value. * * @generated from field: int64 value = 1; */ value?: bigint; } declare const Int64Value_Wkt: { toJson(msg: Int64Value, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): Int64Value; }; export declare const Int64Value: MessageType & typeof Int64Value_Wkt; /** * Wrapper message for `uint64`. * * The JSON representation for `UInt64Value` is JSON string. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.UInt64Value */ export interface UInt64Value { /** * The uint64 value. * * @generated from field: uint64 value = 1; */ value?: bigint; } declare const UInt64Value_Wkt: { toJson(msg: UInt64Value, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): UInt64Value; }; export declare const UInt64Value: MessageType & typeof UInt64Value_Wkt; /** * Wrapper message for `int32`. * * The JSON representation for `Int32Value` is JSON number. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.Int32Value */ export interface Int32Value { /** * The int32 value. * * @generated from field: int32 value = 1; */ value?: number; } declare const Int32Value_Wkt: { toJson(msg: Int32Value, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): Int32Value; }; export declare const Int32Value: MessageType & typeof Int32Value_Wkt; /** * Wrapper message for `uint32`. * * The JSON representation for `UInt32Value` is JSON number. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.UInt32Value */ export interface UInt32Value { /** * The uint32 value. * * @generated from field: uint32 value = 1; */ value?: number; } declare const UInt32Value_Wkt: { toJson(msg: UInt32Value, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): UInt32Value; }; export declare const UInt32Value: MessageType & typeof UInt32Value_Wkt; /** * Wrapper message for `bool`. * * The JSON representation for `BoolValue` is JSON `true` and `false`. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.BoolValue */ export interface BoolValue { /** * The bool value. * * @generated from field: bool value = 1; */ value?: boolean; } declare const BoolValue_Wkt: { toJson(msg: BoolValue, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): BoolValue; }; export declare const BoolValue: MessageType & typeof BoolValue_Wkt; /** * Wrapper message for `string`. * * The JSON representation for `StringValue` is JSON string. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.StringValue */ export interface StringValue { /** * The string value. * * @generated from field: string value = 1; */ value?: string; } declare const StringValue_Wkt: { toJson(msg: StringValue, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): StringValue; }; export declare const StringValue: MessageType & typeof StringValue_Wkt; /** * Wrapper message for `bytes`. * * The JSON representation for `BytesValue` is JSON string. * * protobuf-go-lite:disable-text * * @generated from message google.protobuf.BytesValue */ export interface BytesValue { /** * The bytes value. * * @generated from field: bytes value = 1; */ value?: Uint8Array; } declare const BytesValue_Wkt: { toJson(msg: BytesValue, _options?: Partial): JsonValue; fromJson(json: JsonValue | null | undefined, _options?: Partial): BytesValue; }; export declare const BytesValue: MessageType & typeof BytesValue_Wkt; export {};