import type { Component } from "../../runtime/component.ts"; export interface BoxOptions { readonly title?: string; readonly child?: Component; readonly lines?: readonly string[]; readonly paddingX?: number; } export declare class Box implements Component { private readonly options; constructor(options?: BoxOptions); render(width: number, height?: number): string[]; } //# sourceMappingURL=component.d.ts.map