import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.test"; /** * Agent selection criterion. * * The structure is used by service to determine on which agents a specific test should be executed. */ export interface AgentSelector { /** Selection by agent ID. */ agentId: string | undefined; /** Selection by filter string. */ matchByFilter: string | undefined; /** Select anonymoud (i.e. not registered) agents. */ anonymousAgent: boolean | undefined; } export declare const AgentSelector: { encode(message: AgentSelector, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): AgentSelector; fromJSON(object: any): AgentSelector; toJSON(message: AgentSelector): unknown; fromPartial, never>>(object: I): AgentSelector; }; 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 {};