import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.config"; /** Test config. */ export interface Config { /** ID of the test config. Generated at creation time. */ id: string; /** ID of the folder that the config belongs to. */ folderId: string; /** Config content in YAML format. */ yamlString: string; /** Name of the config. */ name: string; /** Creation timestamp. */ createdAt?: Date; /** UA or SA that created the config. */ createdBy: string; } export declare const Config: { encode(message: Config, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Config; fromJSON(object: any): Config; toJSON(message: Config): unknown; fromPartial, never>>(object: I): Config; }; 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 {};