type STORAGE_STATUS = 0 | 1 | 2 | 3;
declare const STORAGE_STATUS_EMPTY: 0;
declare const STORAGE_STATUS_UNFORMATTED: 1;
declare const STORAGE_STATUS_READY: 2;
declare const STORAGE_STATUS_NOT_SUPPORTED: 3;

export { STORAGE_STATUS_EMPTY, STORAGE_STATUS_NOT_SUPPORTED, STORAGE_STATUS_READY, STORAGE_STATUS_UNFORMATTED };
export type { STORAGE_STATUS };
