declare type Props = {
    events: string[];
    listeners: Record<string, (...args: any[]) => any>;
};
declare function HandleEvents(props: Props): JSX.Element;

export { HandleEvents };
