import type { PermitsStructureType } from './PermitsStructureType'; /** * Census BPS row for one jurisdiction-period with 4 structure-type breakouts. */ export type PermitsOut = { jurisdiction_code: string; /** * 'county' or 'msa' */ jurisdiction_type: string; jurisdiction_name: string; state_code: string; /** * YYYY-MM */ period: string; structure_types: Array; total_units: number; total_valuation_usd: number; source?: string; source_url: string; /** * ISO 8601 UTC timestamp */ fetched_at: string; }; //# sourceMappingURL=PermitsOut.d.ts.map