export declare function isLowerCase(str: string): boolean; /** Generates array of boolean values in which `true` indicates to an upper-case character */ export declare function generateCaseMap(word: string): boolean[]; /** Applies casing to syllabized word according to given `caseMap` */ export declare function applyCaseMap(syllables: string[], caseMap: boolean[]): string[];