import React from 'react'; import '../g.scss'; declare function LabelTowCheckbox(props: ITowCheckbox): React.JSX.Element; export default LabelTowCheckbox; export interface ITowCheckbox { oneLabel: string; oneValue: boolean; twoValue: boolean; towLabel: string; disabled?: boolean; change?: Function; wrapStyle?: React.CSSProperties; valueName?: string; size?: string; }