blob: 60bc368eed8e4ba6e1eeca32484cf7a5beec1fe4 [file] [edit]
import type { BaseConfig, Row } from './types/internal';
export declare const truncateString: (input: string, length: number) => string;
/**
* @todo Make it work with ASCII content.
*/
export declare const truncateTableData: (rows: Row[], config: BaseConfig) => Row[];