/** * Supported External storage type to be used with {@link ExternalAsset}. */ export declare enum ExternalStorageType { /** * Represents Sharepoint storage. */ SHAREPOINT = "SHAREPOINT", /** * Represents S3 storage. */ S3 = "S3", /** * Represents Dropbox storage. */ DROPBOX = "DROPBOX", /** * Represents Blob storage. */ BLOB = "BLOB" }