declare const StringUtil: { capitalize: (value: string) => string; pluralize: (singular: string, plural: string, count: number) => string; lowerCaseTrim: (value: string) => string; slug: any; parseGoogleErrorMessage: (value: string) => string; formatPhoneNumber: (phoneNumber: string) => string | null; unmaskPhoneNumber: (phoneNumber: string) => string | null; unmaskNumber: (maskedValue: string) => number; numberMask: any; formatNumber: (number: string | number) => string; coordinateMask: any; formatCoordinate: (coordinate: string | number) => string; condenseNumber: (number: string | number, digits?: number) => string; addNumberOrdinals: (n: number) => string; formatSettingsNotification: (notification: string) => string; }; export default StringUtil;