import { TypedDataSigner } from '@ethersproject/abstract-signer'; import { TsRollupSigner } from './lib/ts-rollup/ts-account'; export type TermStructureAPIOptionsType = { url: string; timeout: number; chainID: number; termStructureRollupContractAddress: string; ethersSigner: TypedDataSigner; }; export declare class TermStructureAPI { tsAccount: TsRollupSigner; private options; constructor(options: TermStructureAPIOptionsType); init(): Promise; }