/** * Options for {@link formatMarkdownTable}. */ export interface FormatMarkdownTableOptions { /** * Override the names shown in the column headers, replacing the object keys. */ columnNames?: Record | ((key: keyof T) => string); /** * Provide a specific order for the columns, instead of relying on lexical sorting. */ columnOrder?: (keyof T)[] | ((key: keyof T) => number); /** * Custom string-from-value converter. */ stringify?: (value: unknown, key: keyof T) => string | undefined; } /** * Generate a Markdown-formatted table for the given items. */ export declare const formatMarkdownTable: (values: T[], options: FormatMarkdownTableOptions) => string; //# sourceMappingURL=format-markdown.d.ts.map