import { Type } from "@tsed/core";
import { InternalServerError } from "@tsed/exceptions";
/**
 * @private
 */
export declare class TemplateRenderError extends InternalServerError {
    name: string;
    constructor(target: Type<any> | string, method: string | symbol, err: Error);
    /**
     *
     * @returns {string}
     */
    static buildMessage(target: Type<any> | string, method: string | symbol, err: Error): string;
}
