export default interface Lookup {
  id: number;
  documentId: string;
  createdAt: string;
  updatedAt: string;
  publishedAt: string;

  reference: string;
  collection: "events" | "vehicles" | "articles" | "operations";
  show_image: boolean;
  show_date: boolean;
  list_with_date: "none" | "by-year" | "by-month";
  items_with_number: "none" | "numbered" | "inverted";
  enable_detail: boolean;
}