export interface ITemplate { id: string; spaceId: string; name: string; categories: string[]; imageUrl?: string; contentType: TemplateContentType; content: string; createdAt?: Date; createdBy?: string; } export declare enum TemplateContentType { HTML = 1, TEXT = 2 } export interface ICategory { id: string; name: string; }