import * as React from 'react'; import { CSSProperties } from 'styled-components'; export interface CheckboxProps { /** Specifies the default value of the checkbox */ checked?: boolean; /** Specifies if the checkbox is disabled or not */ disabled?: boolean; /** The label */ children: React.ReactNode | React.ReactNode[]; /** Name of the checkbox */ name?: string; /** The checkbox toggle event handler */ onChange?: Function; /** size */ size?: 'regular' | 'medium' | 'large'; /** The value of the checkbox */ value?: string; /** Class name */ className?: string; /** Style */ style?: CSSProperties; } declare const Checkbox: ({ checked, children, disabled, name, onChange, size, value, ...other }: CheckboxProps) => JSX.Element; export default Checkbox;