import { ChatItem } from "./Chat";
export interface Item {
    chatItem: ChatItem;
    chatId?: string;
    x?: number;
    y?: number;
    width?: number;
    height?: number;
    type: string;
}
export interface DashboardBlock {
    id?: string;
    title?: string;
    description?: string;
    items: Item[];
    email?: string;
}
