import { type InputLegacyProps as InputProps } from "../input-legacy"; export type MaskFunction = (value: string | undefined) => boolean; export interface RifmOptions { format?: (str: string) => string; replace?: (str: string) => string; append?: (str: string) => string; mask?: boolean | MaskFunction; accept?: RegExp; } export interface FormattedInputProps extends Omit { mask?: string; onChange?: (value: string) => void; rifmOptions?: RifmOptions; value?: string; defaultValue?: string; } export declare const FormattedInput: import("react").ForwardRefExoticComponent>;