/** * Hook that subscribes a handler to events. */ export declare const useEvent: (type: string, handler: (event: any) => void, target?: any | null, options?: AddEventListenerOptions | undefined) => void;