/** * Returns the first two renderable characters from a string that are separated by non-word characters. * Handles Unicode characters correctly. * * @param {string} label - The input string to process * @returns {[string, string]} Array containing the two characters, or empty strings if not found */ export declare const getFirstTwoRenderableChars: (label: string) => string[]; //# sourceMappingURL=first-two-chars.d.ts.map