/** * Make a display name from first and last name in the format of * "J. Doe" or "Doe" if first name is empty */ export declare function formatDisplayName(firstName: string, lastName?: string): string; /** * Make a full name from first and last name in the format */ export declare function computeFullname(firstName: string, lastName?: string): string;