import type { Component } from '@earendil-works/pi-tui'; /** Horizontal rule that spans the current viewport width. */ export declare class DynamicBorder implements Component { private readonly color; constructor(color: (str: string) => string); invalidate(): void; render(width: number): string[]; }