  interface Suggestion {
    name: { name: string; street: string; city: string; zip: string; state: string }[];
    lat: number;
    lng: number;
    state_code: string;
    post_code: string;
  }

  export type { Suggestion };