import type { Component } from '../component.js'; import type { Color, FillChar } from '../types.js'; import { type AutoColor } from '../utils/terminal-theme.js'; export interface FillOptions { backgroundColor?: Color | AutoColor; } /** * Fill component - fills the available width with a repeated character * * Usage: * fill('─') // Simple character * fill({ char: '─', color: 'red' }) // Character with color * fill('─', { backgroundColor: 'blue' }) // Character with additional options */ export declare function fill(fillChar?: FillChar, options?: FillOptions): Component; //# sourceMappingURL=fill.d.ts.map