import { ComponentEventConstructor, DefaultProps } from "./types";
declare const ComponentEvent: ComponentEventConstructor;
declare type ComponentEvent<PROPS = {}, TYPE extends string = string, THIS = any> = DefaultProps<TYPE, THIS> & PROPS;
export default ComponentEvent;
