export type TableOptions = {
    compact: boolean;
};
export declare function table(header: readonly string[], rows: readonly string[][], options?: TableOptions): string;
