import { InputProps } from "../Input"; import { StackProps } from "../Stack"; export interface CheckboxProps extends InputProps { label?: string; hideRequiredStyles?: boolean; isRequired?: boolean; } export declare const Checkbox: { ({ checked, children, className, disabled, id: idProp, label, onBlur, onChange, onClick, onFocus, hideRequiredStyles, isRequired, tabIndex, theme: themeProp, ...rest }: CheckboxProps): JSX.Element; Group: (props: StackProps) => JSX.Element; };