import type * as ElevenLabs from "../../../../index"; /** * @example * { * pageSize: 1, * search: "search", * sortDirection: "asc", * sortBy: "name", * cursor: "cursor" * } */ export interface SpeechEngineListRequest { /** How many Speech Engines to return at maximum. Can not exceed 100, defaults to 30. */ pageSize?: number; /** Search term to filter Speech Engines by name */ search?: string; /** The direction to sort the results */ sortDirection?: ElevenLabs.SortDirection; /** The field to sort the results by */ sortBy?: ElevenLabs.AgentSortBy; /** Used for fetching next page. Cursor is returned in the response. */ cursor?: string; }