import { FieldType, CountryCode } from '../types'; export declare const formatters: { personName: (value: string) => string; businessName: (value: string) => string; email: (value: string) => string; phone: (value: string, countryCode?: CountryCode) => string; creditCard: (value: string) => string; currency: (value: string) => string; username: (value: string) => string; url: (value: string) => string; streetAddress: (value: string) => string; text: (value: string) => string; number: (value: string) => string; auto: (value: string, fieldType: FieldType, options?: { countryCode?: CountryCode; }) => string; };