import { Store } from 'redux'; import { Selector } from './connect-mixin'; export interface WatchOptions { name?: string; selector?: Selector | string; store?: Store; } export declare const watch: (selector: string | Selector, options?: WatchOptions) => (proto: any, name: string | number | symbol) => void;