import 'dart:typed_data'; abstract class ConnectFileStorage { /// Persists proof bytes locally and returns the reference the completion /// request carries. Future saveProof(String name, Uint8List bytes); Future readProof(String reference); Future deleteProof(String reference); Future proofDirectory(); }