import { Action } from '@ngrx/store'; export declare type OnEventHandler = (this: Context, $event: Event) => Action | Action[]; export declare type OnEventMapEntry = { output: string; handler: OnEventHandler; }; export declare function OnEvent(output: string, handler: OnEventHandler): (target: Partial>>, propertyKey: string) => void;