import type { Component } from '../component.js'; import type { Color } from '../types.js'; export interface ProgressBarOptions { current: number; total: number; label?: string; labelColor?: Color; barColor?: Color; bracketColor?: Color; percentColor?: Color; completeChar?: string; incompleteChar?: string; brackets?: [string, string]; } /** * Create a progress bar component using grid * Uses grid internally to layout: [bracket] [bar (flex)] [bracket] [percent] */ export declare function progressBar(options: ProgressBarOptions): Component; //# sourceMappingURL=progress-bar-grid.d.ts.map