/** * empty comment line Ivan Marshalkin * * @author: Ivan Marshalkin * @date: 2019-04-19 */ import * as React from 'react'; import { IFieldProps } from './Field'; import { ICheckboxProps } from '../..'; export declare type IFieldCheckboxProps = IFieldProps & { name?: string; defaultChecked?: boolean; disabled?: boolean; readOnly?: boolean; onChange: (name: string, value: boolean) => void; inputLabel?: string; items?: any[]; checkboxPosition?: 'left' | 'right'; }; export declare class FieldCheckbox extends React.PureComponent { static defaultProps: { disabled: boolean; checkboxPosition: string; }; get checkboxChildren(): JSX.Element; inputProps: ({ name, defaultChecked, disabled, readOnly }: IFieldCheckboxProps) => ICheckboxProps; onChange: ({ target }: { target: any; }) => void; render(): JSX.Element; }