export type SearchResultType = "contact" | "campaign" | "contact-list" | "tag" | "domain" | "sender";

export interface SearchResultItem {
  type: SearchResultType;
  id: string;
  title: string;
  subtitle?: string;
  href: string;
}
