import * as React from 'react'; import { Props } from './Input.types'; export declare type INewInputMaskProps = Props & { mask: string | Array<(string | RegExp)>; maskPlaceholder?: null | string; }; export declare const formatChars: { 9: string; L: string; l: string; A: string; }; export declare class InputMask extends React.Component { render(): JSX.Element; }