import { Observable } from 'rxjs'; declare type Event = { type: string; payload: unknown; }; export declare function event(ob$: Observable, type: E['type']): Observable; export declare function payload(ob$: Observable, type: E['type']): Observable; export declare function isEvent(input: any, type?: string | { startsWith: string; }): boolean; export {};