import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const DynamicVariableUpdateCommonModel: core.serialization.ObjectSchema<serializers.DynamicVariableUpdateCommonModel.Raw, ElevenLabs.DynamicVariableUpdateCommonModel>;
export declare namespace DynamicVariableUpdateCommonModel {
    interface Raw {
        variable_name: string;
        old_value?: string | null;
        new_value: string;
        updated_at: number;
        tool_name: string;
        tool_request_id: string;
    }
}
