export declare const capitalize: (str: string) => string; export declare const kebabCase: (str: string) => string; export declare const startsWithVowel: (str: string) => boolean; export declare const slugify: (text: string, replaceValue?: string | undefined) => string; export declare const encodeHtmlScript: (data: T) => T; export declare const decodeHtmlScript: (data: T) => T; export declare const truncate: (input: string, length?: number) => string; export declare const deleteVowels: (input: string) => string; export declare const secondsToMMSS: (seconds: number) => string; export declare const paragraphsNum: (selector: string) => number; export declare const paragraphsCharacters: (selector: string) => number;