import { TxData } from "../aassets/atomicTypes"; import { NCInit } from "../system"; export declare class NCO_read_API { private aa_url; private hyp_url; constructor(inpt: NCInit); readTx: (txId: string) => Promise; readAsset: (asset_id: string) => Promise; getActions: (txData: TxData, filterActionNames: string[]) => import("../aassets/atomicTypes").Action[]; txToAssetId: (txId: string) => Promise; txToTemplateId: (txId: string) => Promise; getCollectionTemplateID: (colleciton: string, schema: string, tpl_type: string) => Promise; }