import React from "react"; export interface CommonHiddenCheckableInputProps extends Omit, "value" | "size" | "type"> { /** The id of the element that describe the input. */ ariaDescribedBy?: string; /** Prop to specify the aria-labelledby attribute of the input */ ariaLabelledBy?: string; /** If true the Component will be focused when page load */ autoFocus?: boolean; /** Checked state of the input */ checked?: boolean; /** Input name */ name?: string; /** OnChange event handler */ onChange?: (ev: React.ChangeEvent) => void; /** OnFocus event handler */ onFocus?: (ev: React.FocusEvent) => void; /** Blur event handler */ onBlur?: (ev: React.FocusEvent) => void; /** OnMouseLeave event handler */ onMouseLeave?: (ev: React.MouseEvent) => void; /** OnMouseEnter event handler */ onMouseEnter?: (ev: React.MouseEvent) => void; /** Id of the validation icon */ validationIconId?: string; /** Value of the input */ value?: string; } export interface HiddenCheckableInputProps extends CommonHiddenCheckableInputProps { /** HTML type attribute of the input */ type: string; /** Role attribute of the input */ role?: string; } declare const _default: React.MemoExoticComponent>>; export default _default;