interface GetOptions {
    ipfsGateway?: string;
}
interface AddOptions extends GetOptions {
    ipfsNode?: string;
}
declare const get: (cid: any, { ipfsGateway }?: GetOptions) => Promise<Uint8Array<ArrayBuffer>>;
declare const add: (content: any, { ipfsNode, ipfsGateway }?: AddOptions) => Promise<string>;
export { add, get };
