import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types'; import { CheckboxProps as CheckboxProps$1 } from '@chakra-ui/react'; type CheckboxProps = CheckboxProps$1; /** * Creates a checkbox. * * The checkbox contains its own label, which is passed as a children prop: * * ```tsx * Accept the terms * ``` * * Unlike regular inputs, it doesn't require its own `FormControl`. * * You can group several of these together with a `CheckboxGroup`. */ declare const Checkbox: _chakra_ui_system_dist_system_types.ComponentWithAs<"input", CheckboxProps$1>; export { Checkbox, CheckboxProps };