import Node from './src/type/node'; declare abstract class Template { private input; constructor(input: Input); render(): string; protected getInput(): Input; protected buildNodeUrl(node: Node): string; protected buildUrl(type_id: string, node_id: string): string; protected abstract getHtml(): string; } export default Template;