declare const validateSSN: (ssn: string) => boolean;
declare const validatePhoneUS: (phone: string, requireCountryCode?: boolean) => boolean;
declare const validateZIPCode: (zipCode: string) => boolean;

export { validatePhoneUS, validateSSN, validateZIPCode };
