export declare type TValueCheckboxProps = { propPath: readonly string[]; checkedPropValue: any; propValue: any; onChange: (propPath: readonly string[], propValue: any) => void; }; export declare const ValueCheckbox: import("refun").TComponent;