import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { TestRunResultBucket } from "./TestRunResultBucket"; export declare const TestRunResultSummary: core.serialization.ObjectSchema; export declare namespace TestRunResultSummary { interface Raw { test_id: string; test_name: string; workflow_node_id?: string | null; buckets: TestRunResultBucket.Raw[]; } }