import type { Component } from "../../runtime/component.ts"; import { type Style } from "../../text/ansi.ts"; export interface DividerOptions { readonly char?: string; readonly label?: string; readonly style?: Style | ((text: string) => string); } export declare class Divider implements Component { private readonly options; constructor(options?: DividerOptions); render(width: number): string[]; } //# sourceMappingURL=divider.d.ts.map