export declare const dim: import("chalk").ChalkInstance; export declare const label: import("chalk").ChalkInstance; export declare const value: import("chalk").ChalkInstance; export declare const accent: import("chalk").ChalkInstance; export declare const warning: import("chalk").ChalkInstance; export declare const error: import("chalk").ChalkInstance; export declare const divider: string; export declare const header: import("chalk").ChalkInstance; /** The width of labels in the UI */ export declare const UI_LABEL_WIDTH = 28; /** * Wraps framework warning reasons to a max line length, indenting wrapped lines to align with the start of the reason text. * @param reason The warning reason text to wrap * @param indent The number of spaces to indent wrapped lines (should align with the start of the reason text in the output) * @returns The wrapped reason text with newlines and indentation as needed */ export declare function wrapReason(reason: string, indent?: number): string; /** * Pads a label string so the following value is always visually separated. * When the label fits within UI_LABEL_WIDTH it aligns to that column; * when it overflows it adds MIN_LABEL_GAP spaces instead of merging into the value. * @param text The raw label text (e.g. an env-var name) * @returns The padded/spaced string ready to pass to `label()` */ export declare function padLabel(text: string): string; //# sourceMappingURL=theme.d.ts.map