export interface NameComponents { salutation: string; first: string; middle: string; last: string; suffix: string; } export declare function parseFullName(fullName: string): NameComponents; export declare function createFullName(components: NameComponents): string;