export declare const STATE_META_DATA_KEY: string; /** * The structure to store for the @StateClass decorator */ export interface IStateClassMetaDataOptions { /** * The name of the class helps in various things like deserialization of subclasses or error reporting. */ className?: string; } export declare function StateClass(className: string): (targetConstr: Function) => any;