import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { UserFeedbackScore } from "./UserFeedbackScore";
export declare const UserFeedback: core.serialization.ObjectSchema<serializers.UserFeedback.Raw, ElevenLabs.UserFeedback>;
export declare namespace UserFeedback {
    interface Raw {
        score: UserFeedbackScore.Raw;
        time_in_call_secs: number;
    }
}
