import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message common.v1.StatsTotals */ export declare class StatsTotals extends Message { /** * @generated from field: int32 all_time = 1; */ allTime: number; /** * @generated from field: int32 month = 2; */ month: number; /** * @generated from field: int32 week = 3; */ week: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "common.v1.StatsTotals"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StatsTotals; static fromJson(jsonValue: JsonValue, options?: Partial): StatsTotals; static fromJsonString(jsonString: string, options?: Partial): StatsTotals; static equals(a: StatsTotals | PlainMessage | undefined, b: StatsTotals | PlainMessage | undefined): boolean; }