import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.baremetal.v1alpha"; export interface Vrf { /** ID of the VRF. */ id: string; /** ID of the cloud that the private subnet belongs to. */ cloudId: string; /** ID of the folder that the private subnet belongs to. */ folderId: string; /** * Name of the VRF. * The name is unique within the folder. */ name: string; /** Optional description of the VRF. */ description: string; /** Creation timestamp. */ createdAt?: Date; /** Resource labels as `key:value` pairs. */ labels: { [key: string]: string; }; } export interface Vrf_LabelsEntry { key: string; value: string; } export declare const Vrf: { encode(message: Vrf, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Vrf; fromJSON(object: any): Vrf; toJSON(message: Vrf): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): Vrf; }; export declare const Vrf_LabelsEntry: { encode(message: Vrf_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Vrf_LabelsEntry; fromJSON(object: any): Vrf_LabelsEntry; toJSON(message: Vrf_LabelsEntry): unknown; fromPartial, never>>(object: I): Vrf_LabelsEntry; }; 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 {};