import { Asset, Context, Namespace, SetAssetDocumentsParams } from "../../../internal"; import { AssetDocument, PaginationOptions, ProcedureMethod, ResultSet } from "../../../types"; /** * Handles all Asset Document related functionality */ export declare class Documents extends Namespace { /** * @hidden */ constructor(parent: Asset, context: Context); /** * Assign a new list of documents to the Asset by replacing the existing list of documents with the ones passed in the parameters * * This requires two transactions */ set: ProcedureMethod; /** * Retrieve all documents linked to the Asset * * @note supports pagination */ get(paginationOpts?: PaginationOptions): Promise>; } //# sourceMappingURL=Documents.d.ts.map