import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { LlmCategoryUsage } from "./LlmCategoryUsage";
export declare const ConversationChargingCommonModel: core.serialization.ObjectSchema<serializers.ConversationChargingCommonModel.Raw, ElevenLabs.ConversationChargingCommonModel>;
export declare namespace ConversationChargingCommonModel {
    interface Raw {
        dev_discount?: boolean | null;
        is_burst?: boolean | null;
        tier?: string | null;
        llm_usage?: LlmCategoryUsage.Raw | null;
        llm_price?: number | null;
        llm_charge?: number | null;
        call_charge?: number | null;
        free_minutes_consumed?: number | null;
        free_llm_dollars_consumed?: number | null;
    }
}
