import { JSX } from 'react';
import { InputControlProperties } from '@jaspersoft/jv-tools';
export interface SingleSelectInputControlProps extends InputControlProperties {
}
export type SingleSelectICType = "singleSelect";
export declare function SingleSelectInputControl(props: SingleSelectInputControlProps): JSX.Element;
