/** * Format some data as a markdown table. * @param data Data to format * @param columns Columns to use. If an object, the key is the data object key and the value is the * column display name. Defaults to the keys of the first row. * @returns Formatted table text */ export declare function table(data: Record[], columns?: string[] | Record): string; //# sourceMappingURL=table.d.ts.map