export interface Theme { readonly colorEnabled: boolean; readonly source: string; brand(text: string): string; heading(text: string): string; command(text: string): string; muted(text: string): string; warning(text: string): string; } interface ThemeOptions { cwd?: string; env: Record; stdoutIsTTY: boolean; } export declare function createTheme(options: ThemeOptions): Theme; export declare function shouldUseColor(options: ThemeOptions): boolean; export {}; //# sourceMappingURL=theme.d.ts.map