import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AttachedSystemDataCollectionRef } from "./AttachedSystemDataCollectionRef"; import { AttachedUserDataCollectionRef } from "./AttachedUserDataCollectionRef"; export declare const AgentAnalysisItemsOutputDataCollectionItem: core.serialization.Schema; export declare namespace AgentAnalysisItemsOutputDataCollectionItem { type Raw = AgentAnalysisItemsOutputDataCollectionItem.System | AgentAnalysisItemsOutputDataCollectionItem.User; interface System extends AttachedSystemDataCollectionRef.Raw { source: "system"; } interface User extends AttachedUserDataCollectionRef.Raw { source: "user"; } }