import { InputControlProperties } from '@jaspersoft/jv-tools';
export type TextFieldICType = "textField";
export interface TextFieldICProps extends InputControlProperties {
    variant?: "standard" | "filled" | "outlined" | undefined;
    className?: string;
}
/**
 * Text Input Control Component
 *
 * Will handle the text based input controls
 * @param props
 * @constructor
 */
export declare const SingleValueTextInputControl: (props: TextFieldICProps) => import("react/jsx-runtime").JSX.Element;
