import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class AlternativeInvestmentDocuments extends ClientSDK { /** * List Alternative Investment Documents * * @remarks * Retrieves a list of all investment document details for the specified asset. */ listAlternativeInvestmentDocuments(assetId: string, pageSize?: number | undefined, pageToken?: string | undefined, filter?: string | undefined, options?: RequestOptions): Promise; /** * Get Alternative Investment Document * * @remarks * Retrieves a specific investment document for the specified asset. */ getAlternativeInvestmentDocument(assetId: string, alternativeInvestmentDocumentId: string, options?: RequestOptions): Promise; /** * Download Alternative Investment Documents * * @remarks * Returns a URI to download the specified investment document. */ downloadAlternativeInvestmentDocument(assetId: string, alternativeInvestmentDocumentId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=alternativeinvestmentdocuments.d.ts.map