import { WrappableType } from './Types';
export declare enum StructuredStorageType {
    ArrayStorage = "ArrayStorage",
    MapStorage = "MapStorage",
    SetStorage = "SetStorage"
}
export declare const STRUCTURED_STORAGE_TYPES: ReadonlyArray<StructuredStorageType>;
export declare const getTypeFromStructuredStorageType: (structuredStorageType: StructuredStorageType) => WrappableType;
