import type { Tokens } from "marked"; type TableLayout = { mode: "horizontal" | "vertical"; lines: string[]; }; export declare function useMarkdownTableLayout(token: Tokens.Table, terminalWidth: number): TableLayout; export {};