import * as React from "react"; export declare type CheckedStatus = "on" | "off" | "mixed"; export declare type CheckboxProps = { id?: string; automationId?: string; checkedStatus?: CheckedStatus; onCheck?: (event: React.ChangeEvent) => any; disabled?: boolean; name?: string; }; declare type Input = React.FunctionComponent; declare const Input: Input; export default Input;