/** * Text Formatting * * Headers, subheaders, and text utilities * @module utils/ui/text */ /** * Print section header with optional gradient */ export declare function header(text: string, useGradient?: boolean): string; /** * Print subsection header */ export declare function subheader(text: string): string; /** * Print horizontal rule */ export declare function hr(char?: string, width?: number): string; /** * Print section header with ═══ borders * Format: ═══ Title ═══ */ export declare function sectionHeader(title: string): string; //# sourceMappingURL=text.d.ts.map