export interface TableOptions { hsep?: string | undefined; align?: ("l" | "r" | "c" | "." | null | undefined)[] | string[] | undefined; stringLength?: (s: string) => number; } declare const table: (rows: any[][], { hsep, align, stringLength, }?: TableOptions) => string; export default table;