import { InputControlProperties } from '@jaspersoft/jv-tools';
export type NumberICType = "number";
export interface NumberICProps extends InputControlProperties {
    variant?: "standard" | "filled" | "outlined" | undefined;
    className?: string;
}
/**
 * Number Input Control Component
 *
 * Will handle the numbers as a text based input
 * @param props
 * @constructor
 */
export declare const SingleValueNumberInputControl: (props: NumberICProps) => import("react/jsx-runtime").JSX.Element;
