/** * @dynamic need this because there are static memebers */ export declare class ZipcodeValidator { /** * Regualr expression patterns for global postal codes * * credit : matthewbednarski * * https://gist.github.com/jamesbar2/1c677c22df8f21e869cca7e439fc3f5b */ protected static globalZipCodes: ({ Note: string; Country: string; ISO: string; Format: string; Regex: RegExp; } | { Note: string; Country: string; ISO: string; Format: string; Regex: string; })[]; /** * Return postal code regular expression, based off country code * * @param iso country code */ static ZipcodeExpression(iso: string): RegExp; }