import { AbstractSkeletosState } from "../extendible/AbstractSkeletosState"; /** * Decorator factory to mark a property as a reference to a Skeletos Dictionary. * * @param type the type of state to store in the Dictionary. * @param nameOfKeyAttribute. You can skip this attribute if you have already defined @Id on a property in the type * class. * @param nameOfCursor use this if you want to name the cursor something other than the property name, otherwise leave * blank */ export declare function DictionaryRef(type: () => typeof AbstractSkeletosState, nameOfKeyAttribute?: string, nameOfCursor?: string): PropertyDecorator;