import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.billing.v1"; /** A BillingAccount resource. For more information, see [BillingAccount](/docs/billing/concepts/billing-account). */ export interface BillingAccount { /** ID of the billing account. */ id: string; /** Name of the billing account. */ name: string; /** Creation timestamp. */ createdAt?: Date; /** ISO 3166-1 alpha-2 country code of the billing account. */ countryCode: string; /** * Currency of the billing account. * Can be one of the following: * * `RUB` * * `USD` * * `KZT` */ currency: string; /** Represents whether corresponding billable objects can be used or not. */ active: boolean; /** Current balance of the billing account. */ balance: string; } export declare const BillingAccount: { encode(message: BillingAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): BillingAccount; fromJSON(object: any): BillingAccount; toJSON(message: BillingAccount): unknown; fromPartial, never>>(object: I): BillingAccount; }; 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 {};