export declare const defaults: { header: (title: string) => string; default_body: (content: string[]) => string; footer: () => string; }; export type UserCreateEmailType = { name: string; }; export declare const bodies: { user_create: ({ name }: UserCreateEmailType) => string; user_forget_password: (url: string) => string; user_change_password: () => string; user_change_email: () => string; user_reset_password: () => string; user_login: () => string; }; //# sourceMappingURL=templates.d.ts.map