/** * Gets the terminal width from the CEREBRO_TERMINAL_WIDTH environment variable. * Falls back to undefined if not set, allowing the tabular package to detect it automatically. * @returns The terminal width as a number, or undefined if not set */ declare const getTerminalWidth: () => number | undefined; export default getTerminalWidth;