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 AgentAnalysisItemsInputDataCollectionItem: core.serialization.Schema; export declare namespace AgentAnalysisItemsInputDataCollectionItem { type Raw = AgentAnalysisItemsInputDataCollectionItem.System | AgentAnalysisItemsInputDataCollectionItem.User; interface System extends AttachedSystemDataCollectionRef.Raw { source: "system"; } interface User extends AttachedUserDataCollectionRef.Raw { source: "user"; } }