import { State } from 'watch-state'; export type StateValues = Record; export declare function state(value: ClassAccessorDecoratorTarget, context: ClassAccessorDecoratorContext): { get(this: any): any; set(this: any, val: any): void; init(initialValue: any): any; };