// Types for compiled templates declare module 'ember-movenium/templates/*' { import { TemplateFactory } from 'htmlbars-inline-precompile'; const tmpl: TemplateFactory; export default tmpl; } type Nullable = T | undefined | null type router = any type SafeString = { toString(): string; toHTML(): string; }