/** Utility functions for Chonkie's Handshakes. */
/**
 * Generate a random, fun, 3-part Chonkie-themed name (Adj-Verb-Noun).
 *
 * Combines one random adjective, one random verb, and one random noun from
 * predefined lists, joined by a separator.
 *
 * @param sep - The separator to use between the words. Defaults to "-".
 * @returns A randomly generated collection name string (e.g., "happy-splashes-hippo").
 */
export declare function generateRandomCollectionName(sep?: string): string;
