import { type Token } from "marked"; import type { Theme } from "../theme/theme.js"; /** * Convert an array of marked block-level tokens into a single ANSI string. * Each block is separated by a blank line. The result can be passed directly * to Ink's ``. */ export declare function tokensToAnsi(tokens: Token[], theme: Theme, columns: number): string; //# sourceMappingURL=token-to-ansi.d.ts.map