import { PageTypeBlog, PageTypeProduct, PageTypeSite } from "."; declare type PageType = PageTypeProduct | PageTypeSite | PageTypeBlog; export default interface WidgetDefaultSettings { type: PageType; } export {};