import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.mdb.postgresql.v1"; /** A ResourcePreset resource for describing hardware configuration presets. */ export interface ResourcePreset { /** ID of the ResourcePreset resource. */ id: string; /** IDs of availability zones where the resource preset is available. */ zoneIds: string[]; /** Number of CPU cores for a PostgreSQL host created with the preset. */ cores: number; /** RAM volume for a PostgreSQL host created with the preset, in bytes. */ memory: number; } export declare const ResourcePreset: { encode(message: ResourcePreset, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResourcePreset; fromJSON(object: any): ResourcePreset; toJSON(message: ResourcePreset): unknown; fromPartial, never>) | undefined; cores?: number | undefined; memory?: number | undefined; } & Record, never>>(object: I): ResourcePreset; }; 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 {};