import { WidgetConfigInterface } from "..";
export interface WidgetInterface {
    id: string;
    name: string;
    type: string;
    config: WidgetConfigInterface;
}
