import { CreateStorageResponse } from "../types"; /** * * @param {string} name - What you want your storage account to be named. (Does not have to be unique) * @param {string} size - Amount of storage you are requesting to create. Should be in a string like '1KB', '1MB', '1GB'. Only KB, MB, and GB storage delineations are supported currently. * @returns {CreateStorageResponse} - Created bucket and transaction signature */ export default function createStorageAccount(name: string, size: string): Promise; //# sourceMappingURL=create-storage-account.d.ts.map