import type { TCommonComponentConfig } from 'autoprops'; import type { TAnyObject } from 'tsfn'; import type { TCommonComponentControls } from '../../types'; export declare type TPropsBlock = { componentConfig: TCommonComponentConfig; componentControls: TCommonComponentControls | null; componentPropsChildrenMap: Readonly; propPath: readonly string[]; propKeys: readonly string[]; onChange: (propPath: readonly string[], propValue: any) => void; }; export declare const PropsBlock: import("refun").TComponent;