import type * as ElevenLabs from "../index";
export interface GetLibraryVoicesResponse {
    /** The list of shared voices */
    voices: ElevenLabs.LibraryVoiceResponse[];
    /** Whether there are more shared voices in subsequent pages. */
    hasMore: boolean;
    lastSortId?: string;
}
