import type * as ElevenLabs from "../index"; /** * One page of the workspace's assets, most recently created first. */ export interface AssetListResponse { /** List of Asset objects. */ assets: ElevenLabs.AssetResponse[]; /** Pass as `cursor` to fetch the next page. `null` if there are no more results. */ nextCursor?: string; /** Whether there are more results to fetch. */ hasMore?: boolean; }