import type { BoxOptions, TextAlign } from './types'; export declare const getTerminalWidth: () => number; export declare const visibleLength: (str: string) => number; export declare const pad: (str: string, len: number, align?: TextAlign) => string; export declare const truncate: (str: string, maxLen: number) => string; export declare const indent: (str: string, spaces?: number) => string; export declare const line: (str: string) => string; export declare const item: (n: number, str: string, spaces?: number) => string; export declare const divider: (char?: string, len?: number) => string; export declare const box: (lines: string[], options?: BoxOptions) => string[];