import type { Style } from "../types.js"; export declare function applyAnsiSgrStyle(current: Style, codes: number[]): Style; export interface AnsiSegment { text: string; style: Style; } export declare function parseAnsiSgr(input: string, baseStyle?: Style): AnsiSegment[];