import type { BaseTableAPI } from '../../ts-types/base-table';
export declare function breakString(textStr: string, table: BaseTableAPI): {
    text: string[];
    moreThanMaxCharacters: boolean;
};
