/** * Format data as a table */ export declare function formatTable(data: any[]): void; /** * Show progress bar using cli-progress */ export declare function showProgress(label: string, total: number): { update: (progress: number, status?: string) => void; stop: () => void; }; /** * Format bytes to human readable format */ export declare function formatBytes(bytes: number): string; /** * Format duration to human readable format */ export declare function formatDuration(milliseconds: number): string; /** * Highlight text matches */ export declare function highlightText(text: string, query: string): string; /** * Create a spinner for long operations */ export declare function createSpinner(message: string): { start: () => void; stop: (finalMessage?: string) => void; fail: (errorMessage?: string) => void; }; /** * Display a success message */ export declare function success(message: string): void; /** * Display an error message */ export declare function error(message: string): void; /** * Display a warning message */ export declare function warning(message: string): void; /** * Display an info message */ export declare function info(message: string): void; /** * Create a box around text */ export declare function createBox(text: string, padding?: number): string; /** * Truncate text to specified length */ export declare function truncate(text: string, maxLength: number): string; /** * Format file path for display */ export declare function formatPath(filePath: string, maxLength?: number): string; //# sourceMappingURL=display.d.ts.map