import { FunctionComponent } from 'react'
import { ControlledProps } from './gizwits-type'

export interface BooleanItemProps extends ControlledProps<boolean> {
  icon?: string
  title: string
  subTitle: string
}

declare const BooleanItem: FunctionComponent<BooleanItemProps>

export { BooleanItem }
