import type { TemplateType } from "./template"; export interface CartItem { name: string; type: TemplateType; description?: string; path?: string; }