/** * Prefixes all sequences of non-whitespace characters in a string with a given prefix. * * @param string - The string to prefix. * @param prefix - The prefix to add to the string. * @returns The prefixed string. */ export declare function prefixStringParts(string: string, prefix: string): string; //# sourceMappingURL=prefixStringParts.d.ts.map