/** * Load data from IPFS. Will go over a list of IPFS gateways until it finds the * data. If data is found on a gateway, the gateway is re-used for subsequent * calls until it fails. * @param cid */ export declare function loadFromIPFS(cid: string): Promise; export declare function loadFromIPFSWithTimeout(cid: string, timeoutMillis: number): Promise;