import type { TemplateDelegate } from 'handlebars'; export interface Templates { index: TemplateDelegate; exports: { routes: TemplateDelegate; 'data-types': TemplateDelegate; server: TemplateDelegate; client: TemplateDelegate; hooks: TemplateDelegate; model: { item: TemplateDelegate; index: TemplateDelegate; }; schema: { item: TemplateDelegate; index: TemplateDelegate; }; }; } /** * Read all the Handlebar templates that we need and return on wrapper object * so we can easily access the templates in out generator / write functions. */ export declare const registerHandlebarTemplates: (root: { useUnionTypes: boolean; }) => Templates;