import type { TExtend } from 'tsfn'; export declare type TActualHandlers = { [key in keyof T]: (...args: any[]) => void; }; export declare type THandlers

= { [key: string]: (props: P) => (...args: any[]) => void; }; export declare const mapHandlers:

>(handlers: R) => (props: P) => TExtend>;