/** * Generates a unique string of a specified length with optional special characters. * * @param {number} length - The length of the unique string to generate. * @param {boolean} isPassword - If true, includes special characters for passwords. * @returns {string} - The generated unique string. * * @example * uniqueString(16, true); // "nC4t@h5Ld^3o9Kv1" */ export declare function uniqueString(length: number, isPassword?: boolean): string;