import _m0 from 'protobufjs/minimal'; import { MDBPostgreSQL } from '../../../../../yandex/cloud/mdb/spqr/v1/config'; export declare const protobufPackage = "yandex.cloud.mdb.spqr.v1"; export interface Shard { /** Name of the shard. */ name: string; /** ID of the cluster that the shard belongs to. */ clusterId: string; } export interface ShardSpec { /** Name of the SPQR shard to create. */ shardName: string; /** Properties of the MDB PostgreSQL cluster */ mdbPostgresql?: MDBPostgreSQL | undefined; } export declare const Shard: { encode(message: Shard, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Shard; fromJSON(object: any): Shard; toJSON(message: Shard): unknown; fromPartial, never>>(object: I): Shard; }; export declare const ShardSpec: { encode(message: ShardSpec, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ShardSpec; fromJSON(object: any): ShardSpec; toJSON(message: ShardSpec): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): ShardSpec; }; 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 {};