import type * as ElevenLabs from "../index";
export interface GetConversationsPageResponseModel {
    conversations: ElevenLabs.ConversationSummaryResponseModel[];
    nextCursor?: string;
    hasMore: boolean;
}
