import { JSX } from 'react';
import { InputControlProperties } from '@jaspersoft/jv-tools';
export type BoolICType = "switch" | "checkbox";
export interface BooleanInputControlProps extends InputControlProperties {
    styleType?: BoolICType;
}
export declare function BooleanInputControl(props: BooleanInputControlProps): JSX.Element;
