import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { Voice } from "./Voice";
export declare const GetVoicesV2Response: core.serialization.ObjectSchema<serializers.GetVoicesV2Response.Raw, ElevenLabs.GetVoicesV2Response>;
export declare namespace GetVoicesV2Response {
    interface Raw {
        voices: Voice.Raw[];
        has_more: boolean;
        total_count: number;
        next_page_token?: string | null;
    }
}
