import * as anchor from "@project-serum/anchor"; import { ShadowDriveVersion, ShadowDriveResponse } from "../types"; /** * * @param {anchor.web3.PublicKey} key - Public Key of the existing storage to increase size on * @param {string} size - Amount of storage you are requesting to add to your storage account. Should be in a string like '1KB', '1MB', '1GB'. Only KB, MB, and GB storage delineations are supported currently. * @param {ShadowDriveVersion} version - ShadowDrive version (v1 or v2) * @returns {ShadowDriveResponse} Confirmed transaction ID */ export default function addStorage(key: anchor.web3.PublicKey, size: string, version: ShadowDriveVersion): Promise; //# sourceMappingURL=add-storage.d.ts.map