import React from 'react';
import type { MaskOptions } from './types';
import type { InputComponent, InputComponentProps } from '@react-input/core';
export type InputMaskProps<C extends React.ComponentType | undefined = undefined> = MaskOptions & InputComponentProps<C>;
declare const InputMask: InputComponent<MaskOptions>;
export default InputMask;
