/** * Extracts initials from a full name string. * * Features: * - Handles single names (returns first two characters) * - Handles multiple names (returns first and last name initials) * - Automatically capitalizes all initials * - Filters out empty strings and whitespace * - Handles edge cases like empty names and single characters * - Preserves proper capitalization rules * - Returns undefined for empty or falsy input * * @param name - The full name string to extract initials from * @returns The initials as a string, or undefined if name is empty */ export declare function getInitial(name: string): string | undefined;