/** * @copyright Sister Software. * @license AGPL-3.0 * @author Teffen Ellis, et al. */ /** * A code indicating the functional status of a governmental unit. * * @title TIGER Functional Status */ export declare const TIGERFunctionalStatus: { /** * Active government providing primary general-purpose functions. Active entity (federally recognized entities only). */ readonly ActiveGovernment: "A"; /** * Active government that is partially consolidated with another government but with separate officials providing * primary general-purpose functions. */ readonly PartiallyConsolidatedActiveGovernment: "B"; /** * Active government consolidated with another government with a single set of officials. */ readonly ActiveGovernmentConsolidated: "C"; /** * Active government providing special-purpose functions. */ readonly ActiveGovernmentSpecialPurpose: "E"; /** * Fictitious entity created to fill the Census Bureau geographic hierarchy */ readonly FictitiousEntity: "F"; /** * Active government that is subordinate to another unit of government. */ readonly SubordinateActiveGovernment: "G"; /** * Inactive governmental unit that has the power to provide primary special-purpose functions. */ readonly InActiveGovernmentalUnit: "I"; /** * Inactive, nonfunctioning legal real property entity with potential quasi-legal administrative functions. */ readonly InactiveNonFunctioningLegalRealPropertyEntity: "L"; /** * Active legal real property entity with quasi-legal functions. */ readonly ActiveLegalRealPropertyEntity: "M"; /** * Non-functioning legal entity. */ readonly NonFunctioningLegalEntity: "N"; /** * Statistical entity. */ readonly StatisticalEntity: "S"; /** * Active state-recognized entity. */ readonly ActiveStateRecognizedEntity: "T"; }; export type TIGERFunctionalStatus = (typeof TIGERFunctionalStatus)[keyof typeof TIGERFunctionalStatus]; //# sourceMappingURL=functional-status.d.ts.map