import type * as ElevenLabs from "../index"; export interface SpeechEngineSummaryResponse { /** The speech engine resource ID */ speechEngineId: string; /** Human-readable name for the speech engine */ name: string; /** Creation time in Unix seconds */ createdAtUnixSecs: number; /** Arbitrary tags for categorization and filtering */ tags: string[]; /** The access information of the speech engine for the user */ accessInfo: ElevenLabs.ResourceAccessInfo; }