// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; import "../../styles/BasicIA.css"; export interface IACheckboxProps { label?: string; isChecked?: boolean; disabled?: boolean; styles?: React.CSSProperties; labelStyles?: React.CSSProperties; inputStyle?: React.CSSProperties; highlightColor: string; defaultColor?: string; onChange: (isChecked: boolean, name?: string) => void; name?: string; marked?: boolean; id?: string; userInteractionDisabled?: boolean; borderColor?: string; } export interface IACheckboxState { isChecked: boolean; } export class IACheckbox extends React.Component { constructor(props: IACheckboxProps); render(): JSX.Element; }