import { TransactionChunkResponseInterface, TransactionOffsetResponseInterface } from '../faces/lib/chunks'; import Api from './api'; export default class Chunks { private api; constructor(api: Api); getTransactionOffset(id: string): Promise; getChunk(offset: string | number | BigInt): Promise; getChunkData(offset: string | number | BigInt): Promise; firstChunkOffset(offsetResponse: TransactionOffsetResponseInterface): number; downloadchunkedData(id: string): Promise; }