import * as React from "react"; import { ToggleInputProps } from "../../toggleInput/components/ToggleInput"; export interface CheckboxInputProps extends ToggleInputProps { /** * Whether the checkbox is indeterminate or not. Use an indeterminate checkbox to indicate that there are both selected and unselected checkboxes nested under the indeterminate checkbox. */ indeterminate?: boolean; } declare const CheckboxInput: ({ checked, indeterminate, ref, ...other }: React.PropsWithRef) => React.JSX.Element; export default CheckboxInput;