/** * @license * * Hyphenation patterns for Portuguese (pt) * * URL: http://www.hyphenation.org/tex * Source: hyph-utf8 project * * Copyright (C) 1987, 1994, 1996, 2015 Pedro J. de Rezende, 1996, 2015 J. Joao Dias Almeida, 2024 Leonardo Araujo and Aline Benevides * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of Campinas, of the University of Minho nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * */ export interface HyphenationTrieNode { patterns: number[] | null; children: { [char: string]: HyphenationTrieNode }; } declare const pt_patterns: HyphenationTrieNode; // Default minimum characters before hyphen for Portuguese export declare const pt_lefthyphenmin: number; // Default minimum characters after hyphen for Portuguese export declare const pt_righthyphenmin: number; export default pt_patterns;