/** * Copies a letter case pattern from a template word to a target word. * Returns a modified target word in the letter case of the template word. */ export declare function copyLetterCase(templateWord: string, targetWord: string): string;