export declare const StorageMethod: {
    readonly Cache: "cache";
    readonly FileSystem: "file_system";
};
export type StorageMethod = typeof StorageMethod[keyof typeof StorageMethod];
