import { default as React, JSX } from 'react';
import { LegacyInputRef } from '../../../types/legacyInputRef';
export type CheckboxProps = {
    id: string;
    name: string;
    className?: string;
    label: React.ReactNode;
    inputRef?: LegacyInputRef;
    tile?: boolean;
    labelDescription?: React.ReactNode;
    indeterminate?: boolean;
} & JSX.IntrinsicElements['input'];
export declare const Checkbox: ({ id, name, className, label, inputRef, tile, labelDescription, indeterminate, ...inputProps }: CheckboxProps) => JSX.Element;
export default Checkbox;
