/**
 * Name Service
 * Generate random first and last names for characters
 * Ported from Python character/character_manager.py
 */
import { Sex } from '../../models/Person.js';
/**
 * Get a random last name
 */
export declare function getLastname(): string;
/**
 * Get a random first name based on gender
 */
export declare function getFirstname(gender: Sex): string;
/**
 * Get the opposite sex
 */
export declare function getOppositeSex(sex: Sex): Sex;
/**
 * Get a random sex
 */
export declare function getRandomSex(): Sex;
//# sourceMappingURL=names.d.ts.map