export { D as DEFAULT_ALPHABET } from './constants-CFnCjbhy.js'; /** * Generates a cryptographically secure random ID. * * @param length - Number of characters (1–255). Defaults to 21. * @returns A random URL-safe string of the requested length. * * @example * import { generateId } from "sigilid"; * const id = generateId(); // "K7gkJ_q3vR2nL8xH5eM0w" */ declare function generateId(length?: number): string; export { generateId };