import { PageTypeBlog, PageTypeProduct, PageTypeSite } from "."; declare type PageType = PageTypeProduct | PageTypeSite | PageTypeBlog; export default interface WidgetMetadata { name: string; displayName: string; compatibleWith: PageType[]; icon?: string; } export {};