/// import type { CheckboxProps } from "./Checkbox.types"; declare function Checkbox(props: CheckboxProps): JSX.Element; declare namespace Checkbox { var displayName: string; var defaultProps: { isIndeterminate: boolean; isDisabled: boolean; }; } export { Checkbox };