export declare class TemplateService {
    DEFAULT_LOCALE: string;
    getLoginOtpEmailTemplate(locale: string): string;
    getLoginOtpSmsTemplate(locale: string): string;
    getResetPasswordEmailTemplate(locale: string): string;
    getSignupOtpEmailTemplate(locale: string): string;
    getSignUpOtpSmsTemplate(locale: string): string;
    injectData<T>(htmlTemplate: string, data: T): string;
    private getTemplate;
}
