import type { Component } from "../../runtime/component.ts"; export interface MarkdownOptions { readonly content: string; readonly indent?: number; readonly inlineCodeStyle?: (text: string) => string; } export interface MarkdownRenderOptions { readonly inlineCodeStyle?: (text: string) => string; } export declare class Markdown implements Component { private readonly options; constructor(options: MarkdownOptions | string); render(width: number): string[]; } export declare function renderMarkdown(content: string, width: number, indent?: number, options?: MarkdownRenderOptions): string[]; //# sourceMappingURL=component.d.ts.map