/**
 * Simple URL-safe ID generator that can be used in place of nanoid
 * to avoid ESM/CJS compatibility issues.
 */
export declare function generateId(length?: number): string;
/**
 * Generate a customized ID with specific character set
 */
export declare function customGenerator(alphabet: string, size?: number): () => string;
