import type { TCommonComponentConfig } from 'autoprops'; import type { TAnyObject } from 'tsfn'; export declare type THandlersBlock = { componentConfig: TCommonComponentConfig; componentPropsChildrenMap: Readonly; propPath: readonly string[]; handlerKeys: readonly string[]; onChange: (propPath: readonly string[], propValue: any) => void; }; export declare const HandlersBlock: import("refun").TComponent;