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