import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.apploadbalancer.v1"; /** A TLS validation context resource. */ export interface ValidationContext { trustedCaId: string | undefined; /** X.509 certificate contents in PEM format. */ trustedCaBytes: string | undefined; } export declare const ValidationContext: { encode(message: ValidationContext, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ValidationContext; fromJSON(object: any): ValidationContext; toJSON(message: ValidationContext): unknown; fromPartial, never>>(object: I): ValidationContext; }; 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 {};