/** * Format an error with ANSI colors * Shows file:line:column in cyan, error in red */ export declare function formatError(error: { file?: string; line?: number; column?: number; message: string; name?: string; hint?: string; }): string; /** * Format a warning with ANSI colors * Shows file:line:column in cyan, warning in yellow */ export declare function formatWarning(warning: { file?: string; line?: number; column?: number; message: string; hint?: string; }): string; /** * Format a success message in green */ export declare function formatSuccess(message: string): string; /** * Format an info message in gray */ export declare function formatInfo(message: string): string; /** * Format a count/stat in bold */ export declare function formatBold(text: string): string; //# sourceMappingURL=format.d.ts.map