export interface HbsConfig { templateFolder: string; templates?: { name: string; path: string; }[]; defaultVariable: Record | ((...args: unknown[]) => Promise>); helper?: { [_ in string]: (...args: any) => any; }; }