import type { TemplateLiteral } from "acorn"; import type { Cell } from "../lib/notebook.js"; export declare function parseTemplate(input: string): TemplateLiteral; /** @deprecated */ export declare function transpileTemplate(input: string, tag?: string, raw?: boolean): string; export declare function transpileTemplate(cell: Cell): string;