import type * as ElevenLabs from "../index";
export interface GetSpeechHistoryResponse {
    /** A list of speech history items. */
    history: ElevenLabs.SpeechHistoryItemResponse[];
    /** The ID of the last history item. */
    lastHistoryItemId?: string;
    /** Whether there are more history items to fetch. */
    hasMore: boolean;
    /** The timestamp of the last history item. */
    scannedUntil?: number;
}
