import { CalloutIcon } from "../types"; export declare const inlineCode: (text: string) => string; export declare const inlineEquation: (text: string) => string; export declare const bold: (text: string) => string; export declare const italic: (text: string) => string; export declare const strikethrough: (text: string) => string; export declare const underline: (text: string) => string; export declare const link: (text: string, href: string) => string; export declare const codeBlock: (text: string, language?: string) => string; export declare const equation: (text: string) => string; export declare const heading1: (text: string) => string; export declare const heading2: (text: string) => string; export declare const heading3: (text: string) => string; export declare const quote: (text: string) => string; export declare const callout: (text: string, icon?: CalloutIcon) => string; export declare const bullet: (text: string, count?: number) => string; export declare const todo: (text: string, checked: boolean) => string; export declare const image: (alt: string, href: string, convertToBase64?: boolean) => Promise; export declare const addTabSpace: (text: string, n?: number) => string; export declare const divider: () => string; export declare const toggle: (summary?: string, children?: string) => string; export declare const table: (cells: string[][]) => string; //# sourceMappingURL=md.d.ts.map