export interface Route {
  label: string
  path: string
}

export interface Routes extends Array<Route> {}