export interface TruncateOptions { readonly indicator?: string; readonly sanitize?: boolean; } export declare function truncateToWidth(value: string, width: number, indicator?: string): string; export declare function truncateAnsi(value: string, width: number, options?: TruncateOptions): string; //# sourceMappingURL=truncate.d.ts.map