/** * Shared pool of Japanese agent names for onboarding. * * Used by both the CLI first-run flow (eliza.ts) and the * web UI API server (api/server.ts). */ /** Pool of Japanese names to randomly sample from during onboarding. */ export declare const AGENT_NAME_POOL: readonly string[]; /** Pick `count` unique random names from the pool using Fisher-Yates shuffle. */ export declare function pickRandomNames(count: number): string[]; //# sourceMappingURL=onboarding-names.d.ts.map