export declare const symbols: { readonly success: "✓" | "+"; readonly error: "✗" | "x"; readonly warning: "!"; readonly info: "ℹ" | "i"; readonly arrow: "→" | "->"; readonly bullet: "*" | "•"; readonly progressFilled: "#" | "▓"; readonly progressEmpty: "-" | "░"; }; /** * Pre-styled output functions for consistent CLI formatting. * Uses chalk for coloring with appropriate symbols. */ export declare const styled: { /** Green checkmark with message */ readonly success: (text: string) => string; /** Red X with message */ readonly error: (text: string) => string; /** Yellow warning with message */ readonly warning: (text: string) => string; /** Dim info text */ readonly info: (text: string) => string; /** Cyan arrow for actions */ readonly action: (text: string) => string; /** Label with value, label is dimmed */ readonly label: (label: string, value: string) => string; /** Phase indicator with visual progress bar */ readonly phase: (num: number, total: number, name: string) => string; /** Bullet point for lists */ readonly bullet: (text: string) => string; };