import type { StateCodeUS } from '../types/datasets/state-code';
type PerState<T> = Partial<Record<StateCodeUS, T>>;
export type PerStateWithDefault<T> = PerState<T> & {
    default: T;
};
export {};
