import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class AlternativeInvestments extends ClientSDK { /** * List Alternative Investment Assets * * @remarks * Retrieves a list of available alternative investment assets and their details. Replace `{asset_id}` in the endpoint path with a dash to act as a wild card. Ex:`/trading/v1/assets/-/alternativeInvestments` */ listAlternativeInvestments(assetId: string, pageSize?: number | undefined, pageToken?: string | undefined, filter?: string | undefined, options?: RequestOptions): Promise; /** * Get Alternative Investment Asset * * @remarks * Retrieves the specified alternative investment asset details. */ getAlternativeInvestment(assetId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=alternativeinvestments.d.ts.map