import { Selector } from '@uxland/redux/connect'; import { PropertyDeclaration } from 'lit'; import { Store } from 'redux'; export interface WatchOptions { name?: string; selector?: string; store?: Store; propertyOptions?: PropertyDeclaration; } export declare const watch: (selector: string | Selector, options?: WatchOptions) => (proto: any, name: PropertyKey) => void;