import type { FC } from "react"; import type { IMaskedInput, TMaskedCallbackArg, TMaskedRef, TMaskOptions } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/index.d.mts"; /** * Компонент маски * @returns {ReactElement} */ declare const MaskedInput: FC; export type { IMaskedInput, TMaskedCallbackArg, TMaskedRef, TMaskOptions, }; export { MaskedInput, };