import React from 'react';
import type { InputTextProps, InputTextRef } from './types';
export declare const transformValue: (transform: InputTextProps["transform"], value: string) => string;
export declare const TextNormal: React.ForwardRefExoticComponent<Pick<InputTextProps, keyof InputTextProps> & React.RefAttributes<InputTextRef>>;
