import { AbstractSkeletosState } from "../extendible/AbstractSkeletosState"; /** * Decorator factory to mark a property as a reference to a Skeletos State. * * @param type the type is required to create new instances of it. * @param nameOfCursor use this if you want to name the cursor something other than the property name, otherwise leave * blank */ export declare function StateRef(type: () => typeof AbstractSkeletosState, nameOfCursor?: string): PropertyDecorator;