import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DashboardCallSuccessChartModel } from "./DashboardCallSuccessChartModel"; import { DashboardCriteriaChartModel } from "./DashboardCriteriaChartModel"; import { DashboardDataCollectionChartModel } from "./DashboardDataCollectionChartModel"; export declare const GetConvAiDashboardSettingsResponseModelChartsItem: core.serialization.Schema; export declare namespace GetConvAiDashboardSettingsResponseModelChartsItem { type Raw = GetConvAiDashboardSettingsResponseModelChartsItem.CallSuccess | GetConvAiDashboardSettingsResponseModelChartsItem.Criteria | GetConvAiDashboardSettingsResponseModelChartsItem.DataCollection; interface CallSuccess extends DashboardCallSuccessChartModel.Raw { type: "call_success"; } interface Criteria extends DashboardCriteriaChartModel.Raw { type: "criteria"; } interface DataCollection extends DashboardDataCollectionChartModel.Raw { type: "data_collection"; } }