/**
* Wraps a string value to be on multiple lines after
* a certain characters limit has been hit.
*/exportdeclarefunctionwordWrap(value: string, options: {
width: number;
indent?: string;
newLine?: string;
escape?: (value: string) => string;
}): string;