/** * Returns a suitable set of initials for a name. Uses the first character of each * name segment and omits middle segments if the segment count is greater than three. * @param {string} name - The full name. * @returns {string} Limited to three characters. Empty if `name` is empty. * @public */ declare function getInitials(name: string): string; export default getInitials;