import { StateAnsi } from './interfaces'; /** * @func findStateAnsiByFipsCode Find the state's information based on the * Federal Information Processing Standard (FIPS) State Code ANSI * (American National Standards Institute, USA states only). * * @param {string} code FIPS ANSI code (case insensitive, 2 chars) * @return {StateAnsi|undefined} */ export declare const findStateAnsiByFipsCode: (code: string) => StateAnsi | undefined; /** * @func findStateAnsiByGnisid Find the state's information based on the * Geographic Names Information System Identifier (GNISID) ANSI * (American National Standards Institute, USA states only). * * @param {string} id GNISID ANSI (case insensitive) * @return {StateAnsi|undefined} */ export declare const findStateAnsiByGnisid: (id: string) => StateAnsi | undefined; /** * @func findStateAnsiByName Find the state's information by its name ANSI * (American National Standards Institute, USA states only). * * @param {string} name Name ANSI (case insensitive) * @return {StateAnsi|undefined} */ export declare const findStateAnsiByName: (name: string) => StateAnsi | undefined; /** * @func findStateAnsiByUspsCode Find the state's information based on the * Official United States Postal Service (USPS) Code ANSI * (American National Standards Institute, USA states only). * * @param {string} code USPS ANSI code (case insensitive, 2 chars) * @return {StateAnsi|undefined} */ export declare const findStateAnsiByUspsCode: (code: string) => StateAnsi | undefined; /** * @func getStatesAnsi Get all states ANSI (American National Standards Institute, USA states only). * * @return {StateAnsi[]} */ export declare const getStatesAnsi: () => StateAnsi[];