/**
 * Utility function to convert names into initials
 *
 * @param title The name of the person/space this avatar is for
 * @returns string with initials
 */
export declare const getInitials: (title: string, type: string) => string;
