import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AssetResponse } from "./AssetResponse"; export declare const AssetListResponse: core.serialization.ObjectSchema; export declare namespace AssetListResponse { interface Raw { assets: AssetResponse.Raw[]; next_cursor?: string | null; has_more?: boolean | null; } }