/** * One structure-type breakdown (1-unit, 2-unit, 3-4 unit, or 5+ unit). */ export type PermitsStructureType = { /** * Census structure-type code: 101/103/104/105 */ code: string; label: string; buildings: (number | null); units: (number | null); valuation_usd: (number | null); }; //# sourceMappingURL=PermitsStructureType.d.ts.map