import * as React from "react"; import { AbstractPureComponent2, Alignment, IRef } from "../../common"; import { HTMLInputProps, Props } from "../../common/props"; export declare type ControlProps = IControlProps; /** @deprecated use ControlProps */ export interface IControlProps extends Props, HTMLInputProps { /** * Alignment of the indicator within container. * * @default Alignment.LEFT */ alignIndicator?: Alignment; /** Whether the control is checked. */ checked?: boolean; /** JSX label for the control. */ children?: React.ReactNode; /** Whether the control is initially checked (uncontrolled mode). */ defaultChecked?: boolean; /** Whether the control is non-interactive. */ disabled?: boolean; /** Ref handler that receives HTML `` element backing this component. */ inputRef?: IRef; /** Whether the control should appear as an inline element. */ inline?: boolean; /** * Text label for the control. * * Use `children` or `labelElement` to supply JSX content. This prop actually supports JSX elements, * but TypeScript will throw an error because `HTMLAttributes` only allows strings. */ label?: string; /** * JSX Element label for the control. * * This prop is a workaround for TypeScript consumers as the type definition for `label` only * accepts strings. JavaScript consumers can provide a JSX element directly to `label`. */ labelElement?: React.ReactNode; /** Whether this control should use large styles. */ large?: boolean; /** Event handler invoked when input value is changed. */ onChange?: React.FormEventHandler; /** * Name of the HTML tag that wraps the checkbox. * * By default a `