import { TemplateServiceInterface } from './template.service.interface';
import { Template, TemplateResponse } from './template.service.type';
declare class TemplateService implements TemplateServiceInterface {
    getTemplate(vertical: string, template_key: string): Promise<Template>;
    useTemplate<T, R>(vertical: string, template_key: string, payload: T): Promise<TemplateResponse<R>>;
}
export declare const templateService: TemplateService;
export {};
