import { EventTypes } from './EventTypes';
export declare type EventAction = (data: any) => void;
export declare type Events = {
    type: EventTypes;
    action: (data: any) => void;
};
