import m from 'mithril'; export declare type TemplateResultType = string | { html?: string; }; export declare type TemplateCallbackType = (...args: any[]) => TemplateResultType; export declare function getTemplateFunction(template?: T, attributes?: m.Attributes): (...args: unknown[]) => m.Children; export declare function getTemplate(item: T, template?: TemplateCallbackType, attributes?: m.Attributes): m.Children; //# sourceMappingURL=Template.d.ts.map