import type MystTemplate from 'myst-templates'; import type { TypstTemplateImports, TexTemplateImports } from './types.js'; /** * Render a template from content * * Imports contains template-kind-specific import/command values; these are resolved * based on kind. * Preamble is content directly appended to resolved import value. * Packages are existing packages already included as part of the template. */ export declare function renderTemplate(template: MystTemplate, opts: { contentOrPath: string; imports?: TexTemplateImports | TypstTemplateImports; preamble?: string; packages?: string[]; force?: boolean; frontmatter: any; parts: any; options: any; bibliography?: string; outputPath: string; sourceFile?: string; filesPath?: string; removeVersionComment?: boolean; }): void; //# sourceMappingURL=jtex.d.ts.map