import { WidgetInterface } from "..";
export interface WidgetTypePresetsInterface {
    label: string;
    description: string;
    imageLink: string;
    layout?: [number, number];
    widget: Partial<WidgetInterface>;
}
