import { CborAPI, TxUnspentOutput, UtxoFilterOptions } from "../../dappConnector"; import { CborToJsApiBridge } from './CborToJsApiBridge'; type EternlCache = { getUtxos: Record; getCollateral: Record; getBalance: Record; getUsedAddresses: Record; getUnusedAddresses: Record; }; export declare class EternlToJsApiBridge extends CborToJsApiBridge { protected cborAPI: CborAPI; constructor(cborAPI: CborAPI, cache: EternlCache, cacheTtl: number); getUtxos(options?: UtxoFilterOptions): Promise; getCollateral(): Promise; private getLockedUtxos; static createCache(): EternlCache; } export {}; //# sourceMappingURL=EternlToJsApiBridge.d.ts.map