export interface PostalCode {
  id: string;
  parent_id?: string | null;
  label: string | null;
  country: string;
  code?: string | null;
}
