import _m0 from 'protobufjs/minimal'; import { ArtifactSettings } from '../../../../../../yandex/cloud/loadtesting/api/v1/test/artifact_settings'; import { Tag } from '../../../../../../yandex/cloud/loadtesting/api/v1/common/tag'; export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.test"; /** Test meta information. */ export interface Details { /** Name of the test. */ name: string; /** Description of the test. */ description: string; /** Tags assigned to the test. */ tags: Tag[]; /** ID of the logging group to which test artifacts are uploaded. */ loggingLogGroupId: string; /** Settings which define where to upload test artifacts and which files should be included. */ artifactSettings?: ArtifactSettings; } export declare const Details: { encode(message: Details, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Details; fromJSON(object: any): Details; toJSON(message: Details): unknown; fromPartial, never>)[] & Record, never>) | undefined; loggingLogGroupId?: string | undefined; artifactSettings?: ({ objectStorageBucket?: string | undefined; isArchive?: boolean | undefined; filterInclude?: string[] | undefined; filterExclude?: string[] | undefined; } & { objectStorageBucket?: string | undefined; isArchive?: boolean | undefined; filterInclude?: (string[] & string[] & Record, never>) | undefined; filterExclude?: (string[] & string[] & Record, never>) | undefined; } & Record, never>) | undefined; } & Record, never>>(object: I): Details; }; 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 {};