import { TemplateLanguageEnum } from '../interfaces/template.types';
export declare class RenderTemplateDto {
    locale?: string;
    name?: string;
    content?: string;
    language?: TemplateLanguageEnum;
    scope?: string;
    scopeId?: string;
    context?: Record<string, any>;
}
export declare class RenderTemplateOutputDTO {
    content: string;
    subject: string;
}
