import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AgentTestEntityType } from "./AgentTestEntityType"; import { AgentTestFolderPathSegmentResponseModel } from "./AgentTestFolderPathSegmentResponseModel"; import { ResourceAccessInfo } from "./ResourceAccessInfo"; import { TestType } from "./TestType"; export declare const UnitTestSummaryResponseModel: core.serialization.ObjectSchema; export declare namespace UnitTestSummaryResponseModel { interface Raw { id: string; name: string; access_info?: ResourceAccessInfo.Raw | null; created_at_unix_secs: number; last_updated_at_unix_secs: number; type: TestType.Raw; entity_type?: AgentTestEntityType.Raw | null; folder_parent_id?: string | null; folder_path?: AgentTestFolderPathSegmentResponseModel.Raw[] | null; children_count?: number | null; } }