import { AssetInfo } from "../types/asset-info.interface"; /** * Should be a public gateway * Should follow this structure: "https://ipfs.domain.io/ipfs/" * @param ipfsGateway */ export declare function checkIpfsGatewayPath(ipfsGateway: string): void; /** * Receives assetUrl which should be the following: ipfs:// * @param assetUrl * @returns */ export declare function buildIpfsPath(assetUrl: string): string; export declare function fromCIDToAddress(cid: string): string; export declare function getCIDFromAddress(info: AssetInfo): string;