/** * @license MIT * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { ParseTreeResult } from '@angular/compiler'; import { MigrationError } from './types'; export interface ParseResult { errors: MigrationError[]; tree: ParseTreeResult | undefined; } /** * parses the template string into the Html AST * @param template The template to parse * @returns The result */ export declare function parseTemplate(template: string): ParseResult;