interface TemplateConfig { id: string; businessId: string; name: string; description: string; version: string; author: string; tags: string[]; features: string[]; placeholders: Record; files: string[]; dependencies: Record; } export declare function getTemplateInfo(businessId: string, templateId: string): Promise<{ success: boolean; template: TemplateConfig; error?: undefined; } | { success: boolean; error: string; template?: undefined; }>; export {};