import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class AlternativeOrders extends ClientSDK { /** * Create Alternative Order * * @remarks * Creates an order for an alternative investment asset. */ createAlternativeOrder(alternativeOrderCreate: components.AlternativeOrderCreate, accountId: string, options?: RequestOptions): Promise; /** * List Alternative Orders * * @remarks * Retrieves a list of alternative investment orders for the specified account. */ listAlternativeOrders(accountId: string, pageSize?: number | undefined, pageToken?: string | undefined, filter?: string | undefined, options?: RequestOptions): Promise; /** * Get Alternative Order * * @remarks * Retrieves the details for the specified alternative investment order. */ getAlternativeOrder(accountId: string, alternativeOrderId: string, options?: RequestOptions): Promise; /** * Get Pending Investor Actions * * @remarks * Retrieves the links for any order documents that are awaiting signature and the `party_id` of the party responsible for signing them. */ retrievePendingInvestorActions(accountId: string, alternativeOrderId: string, options?: RequestOptions): Promise; /** * Simulate Alternative Order Booking * * @remarks * Simulates settlement process for an alternative order. For use in UAT environment only. */ settleAlternativeOrder(settleAlternativeOrderRequestCreate: components.SettleAlternativeOrderRequestCreate, accountId: string, alternativeOrderId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=alternativeorders.d.ts.map