/** * @param name the name used to compute the initials * @returns the first character of the first word and the last word's first character, joined together, and upper-cased * @example initials('Samuel L. jackson') => 'SJ' * initials('Madonna') => 'M' */ export declare const initials: (name?: string) => string;