import * as React from 'react'; import { StateType, StyleType } from '../StyleConfig'; export interface CheckboxProps extends React.HTMLProps { circle?: boolean; state?: StateType | StyleType; /** * Attaches a ref to the `` element. Only functions can be used here. * * ```js * { this.input = ref; }} /> * ``` */ inputRef?: React.Ref; onChangeState?: (chk: boolean, val: string) => void; } export declare class Checkbox extends React.Component { static defaultProps: CheckboxProps; constructor(props: CheckboxProps); private onChange; render(): JSX.Element; }