interface Options {
    width?: number;
}
declare function wordWrap(str: string, options?: Options): string;
export = wordWrap;
