import { Diagnostic } from 'vscode-languageserver/node'; import { TemplateLinterError } from '../template-linter'; interface ITemplateNode { template: string; startLine: number; startColumn: number; endLine: number; endColumn: number; } export declare function toHbsSource(templateNode: ITemplateNode): string; export declare function toDiagnostic(source: string, error: TemplateLinterError): Diagnostic; export {};