import { ChoiceInputProps } from '../choice-input.types'; export interface CheckboxProps extends ChoiceInputProps { /** * If the check is in indeterminate state. (Not checked or unchecked) * When this is true then the checked prop is ignored */ indeterminate?: boolean; } export declare const Checkbox: (props: CheckboxProps) => JSX.Element; export default Checkbox;