import React from 'react'; import { CheckboxProps } from 'antd'; declare const CHECKBOX_WRAPPER_CLASSNAME = "ued-checkbox-wrap"; declare const WrapperCheckbox: ({ children }: { children: JSX.Element; }) => React.FunctionComponentElement; export interface MyCheckboxProps { value?: any; visible?: boolean; onChange?: (value: any) => void; onValueRelease?: (value: any) => void; getCompPropMapState?: (id: string, type: string) => any; compId?: string; name?: string; fieldName: string; required?: any; hidden?: boolean; regexp?: any; message?: any; defaultChecked?: any; label?: any; labelCol?: any; wrapperCol?: any; text?: any; selfSpan?: number; colSpan?: number; style?: React.CSSProperties; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; colon?: boolean; isFormChild?: boolean | undefined; tipSize?: string; tipWidth?: string; tipHeight?: string; } export interface CheckboxItemProps extends CheckboxProps { value: CheckboxProps['checked']; } declare const MyCheckbox: React.ForwardRefExoticComponent>; export default MyCheckbox; export { CHECKBOX_WRAPPER_CLASSNAME, WrapperCheckbox };