import { ObjectId } from "mongodb"; export declare class ViewStructureExtra { modalSize?: "w-10" | "w-20" | "w-30" | "w-40" | "w-50" | "w-60" | "w-70" | "w-80" | "w-90" | "w-100"; modalClass?: string; } export declare class ViewStructure { viewId: ObjectId; name: string; description: string; title: string; icon: string; type: string; version: string; structure: T; extra?: ViewStructureExtra; }