/// <reference types="react" />
/** Very plain checkbox. */
import * as React from "react";
export interface Props {
    className?: string;
    labelBefore?: boolean;
    onChange?: (checked: boolean, id: string, e: any) => void;
    label: string;
    title?: string;
    id?: string;
    [propName: string]: any;
    checked?: boolean;
}
/**
 * On change takes (checked status, id, evt).
 */
export declare const Checkbox: React.SFC<Props>;
export default Checkbox;
