/** Renders a table for the CLI or markdown. */
declare const table: ({ colAligns, markdown, rows, }: {
    colAligns?: ("left" | "right")[] | undefined;
    markdown?: boolean | undefined;
    rows: string[][];
}) => string;
export default table;
