import { ChoiceInputProps } from '../choice-input.types'; export interface CheckProps extends ChoiceInputProps { /** * If the check is in indeterminate state. (Not checked or unchecked) * When this is true then the checked prop is ignored */ indeterminate?: boolean; } export declare const Check: (props: CheckProps) => JSX.Element; export default Check;