/**
 * Approximate the number of syllables in a string
 *
 * @param input The string
 * @returns the number of syllables
 */
export declare function syllables(input: string): number;
export default syllables;
