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