// @flow /* DOCUMENTATION: https://orbit.kiwi/components/checkbox/ */ import type { ReactComponentStyled } from "styled-components"; import type { Globals, Ref } from "../common/common.js.flow"; export type Props = {| +label?: React$Node, +value?: string, +hasError?: boolean, +disabled?: boolean, +checked?: boolean, +name?: string, +info?: React$Node, +tabIndex?: string, +readOnly?: boolean, +onChange?: (ev: SyntheticInputEvent) => void | Promise, ...Globals, ...Ref, |}; declare export default React$ComponentType; declare export var Label: ReactComponentStyled;