/** * Markdown utilities for Socket CLI. * Generates formatted markdown output for reports and documentation. * * Key Functions: * - mdTableStringNumber: Create markdown table with string keys and number values * * Table Features: * - Auto-sizing columns based on content * - Proper alignment for headers and data * - Clean markdown-compliant formatting * * Usage: * - Analytics reports * - Scan result tables * - Statistical summaries */ export declare function mdTableStringNumber(title1: string, title2: string, obj: Record): string; export declare function mdTable>>(logs: T, // This is saying "an array of strings and the strings are a valid key of elements of T" // In turn, T is defined above as the audit log event type from our OpenAPI docs. cols: Array, titles?: string[]): string; export declare function mdTableOfPairs(arr: Array<[string, string]>, // This is saying "an array of strings and the strings are a valid key of elements of T" // In turn, T is defined above as the audit log event type from our OpenAPI docs. cols: string[]): string; //# sourceMappingURL=markdown.d.mts.map