import { HtmlValidationMessageOverrideObject } from '../../../common/sdk/inputUtils/inputValidationTypes';
import { ITextInputProps } from './TextInput.types';
export declare const formatPhoneNumber: (unformattedValue: string, phoneFormat: string) => string;
export declare const getUnformattedNumber: (val: string, phoneFormat: string, didDeleteChars: boolean) => string;
export declare const hasNonNumericChar: (str: string) => boolean;
export declare const translateHtmlValidationMessage: (message: HtmlValidationMessageOverrideObject, { translations, phoneFormat, }: {
translations: ITextInputProps["translations"];
phoneFormat?: string;
}) => string;