import { FilFlush } from "@haechi-labs/henesis-wallet-core/lib/fil/wallet"; import { TransferDTO } from "./transfer.dto"; export declare const EXAMPLE_FILECOIN_FLUSH_DTO: FlushDTO; export declare class FlushDTO { id: string; masterWalletId: string; transfers: TransferDTO[]; createdAt: string; updatedAt: string; static fromFlush(flush: FilFlush): { id: string; masterWalletId: string; transfers: TransferDTO[]; createdAt: string; updatedAt: string; }; }