import IElement from "./IElement"; export interface IMaskedInput extends IElement { mask?: string; } export default function MaskedInput({ mask, ...a }: IMaskedInput): any; //# sourceMappingURL=MaskedInputDiv.d.ts.map