/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Component } from 'react'; declare class InovuaCheckBox extends Component { constructor(props: any); componentDidUpdate(prevProps: any): void; componentDidMount(): void; focus(): void; checkUpdateIndeterminate(props?: any): void; isFocused(): any; handleFocus(event: any): void; handleBlur(event: any): void; changeToNextValue(event: any): void; setChecked(value: any, event: any): void; handleClick(event: any): void; handleKeyDown(event: any): void; getProps(props: any, state: any): any; render(): JSX.Element; renderBrowserNative(domProps: any): JSX.Element; renderBrowserNativeInput(): any; renderCheckbox(config: any, eventHandlers: any): JSX.Element; setNativeIndeterminate(indeterminate: any): void; } export default InovuaCheckBox;