import type { string_markdown } from '../../types/typeAliases';
import type { string_markdown_text } from '../../types/typeAliases';
/**
 * Create a markdown table from a 2D array of strings
 *
 * @public exported from `@promptbook/markdown-utils`
 */
export declare function createMarkdownTable(table: Array<Array<string_markdown_text>>): string_markdown;
/**
 * TODO: [🏛] This can be part of markdown builder
 */
