export declare const stateCodes: Record; export declare const stateNames: string[]; export declare const stateAbbrs: string[]; export declare const STATE_NAME_PATTERN: RegExp; export declare const STATE_CODE_PATTERN: RegExp; export declare const STATE_PATTERN: RegExp; export type StateCode = keyof typeof stateCodes; export interface State { stateCode: StateCode; stateName: string; state: string; } export declare function matchAnyState(input: string): State | null; //# sourceMappingURL=stateCodes.d.ts.map