type STORAGE_USAGE_FLAG = 1 | 2 | 4 | 8;
declare const STORAGE_USAGE_FLAG_SET: 1;
declare const STORAGE_USAGE_FLAG_PHOTO: 2;
declare const STORAGE_USAGE_FLAG_VIDEO: 4;
declare const STORAGE_USAGE_FLAG_LOGS: 8;

export { STORAGE_USAGE_FLAG_LOGS, STORAGE_USAGE_FLAG_PHOTO, STORAGE_USAGE_FLAG_SET, STORAGE_USAGE_FLAG_VIDEO };
export type { STORAGE_USAGE_FLAG };
