import * as React from "react"; import { InputDecorator } from "./decorator"; export type MaskedInputProps = Omit, "value" | "onChange"> & { value?: string; onChange?: React.ChangeEventHandler; onValueChange?: (value: string, rawValue: string) => void; mask?: (rawValue: string) => string; unmask?: (maskedValue: string) => string; }; declare const MaskedInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { MaskedInput };