/**
 * Web InputMasked Context
 *
 */
import type { ContextProps } from '../../shared/Context';
export type InputMaskedContextValue = {
    props: any;
    context: ContextProps;
};
declare const InputMaskedContext: import("react").Context<InputMaskedContextValue>;
export default InputMaskedContext;
