import { AbstractSkeletosState } from "../extendible/AbstractSkeletosState"; /** * Decorator factory to mark a property as 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 State(type: () => typeof AbstractSkeletosState, nameOfCursor?: string): PropertyDecorator;