export declare const nameToInitials: (name?: string) => string; export declare const isWordString: (word: any) => boolean; export declare const isWord: (word: any) => boolean; export declare const wordHasSpaces: (word: any) => boolean; export declare const truncateMiddle: (word: any, startLen: number, endLen: number, ellip: any) => string; export declare const stripUrlPrefix: (url: string) => string; export declare const newlineToHTML: (string: string) => string; /** * Fast way to repeat a string character. * @param {string} pattern * @param {number} count * @returns {string} */ export declare const repeat: (pattern: string, count: number) => string; /** * Camelcases a specified string. * * @param {string} string The string. * @returns {string} The camelCased string. */ export declare const camelCase: (string: string) => string;