import * as React from 'react' import { WithThemeInjectedProps, ApplyWithTheme } from '../styles/themer/withTheme' export interface RadioCheckboxBaseProps extends WithThemeInjectedProps, Pick, 'onBlur' | 'onFocus'> { children?: React.ReactNode onChange?( event: React.ChangeEvent, props: RadioCheckboxBaseProps & { isSelected: boolean } ): void renderInputButton(isSelected: boolean, style: React.CSSProperties): React.ReactNode id: string | number aria?: { label?: string } isDisabled?: boolean isSelected?: boolean isIndeterminate?: boolean, value?: string wrapEl?: keyof JSX.IntrinsicElements width?: number btnType: string | number style?: { button?: React.CSSProperties label?: React.CSSProperties wrapEl?: React.CSSProperties inputBtn?: React.CSSProperties } } declare const RadioCheckboxBase: ApplyWithTheme> export default RadioCheckboxBase