export interface WrapOptions { readonly width: number; readonly firstPrefix?: string | undefined; readonly nextPrefix?: string | undefined; } export declare function wrapAnsiLine(text: string, budget: number): string[]; export declare function wrapWithPrefixes(text: string, options: WrapOptions): string[]; export declare function reflowRows(rows: readonly string[], budget: number): string[];