/** * Provides extended string formatting functionality. */ export declare class StringHelper { /** * Splits the given text into separate lines. * @param text The text to split. * @returns An array of the individual lines. */ static splitLines(text: string): string[]; } //# sourceMappingURL=StringHelper.d.ts.map