import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { BucketingStatus } from "./BucketingStatus"; import { TestRunResultSummary } from "./TestRunResultSummary"; import { UnitTestRunResponseModel } from "./UnitTestRunResponseModel"; export declare const GetTestSuiteInvocationResponseModel: core.serialization.ObjectSchema; export declare namespace GetTestSuiteInvocationResponseModel { interface Raw { id: string; agent_id?: string | null; branch_id?: string | null; created_at?: number | null; folder_id?: string | null; repeat_count?: number | null; bucketing_status?: BucketingStatus.Raw | null; result_groups?: TestRunResultSummary.Raw[] | null; test_runs: UnitTestRunResponseModel.Raw[]; } }