/** * Generates a random hexadecimal color code. * * @param includeHash - Whether to include '#' prefix (default: true). * @returns A random hex color code (e.g., '#A3F9C2' or 'A3F9C2'). * * @example * // Generate hex color with hash * randomHexColor(); // '#8E44DB' * * @example * // Generate hex color without hash * randomHexColor(false); // '8E44DB' * * @example * // Use in CSS * const color = randomHexColor(); * element.style.backgroundColor = color; * * @note Uses Math.random() for non-cryptographic randomness. * @note Always generates 6-digit hex colors (no shorthand). * * @complexity Time: O(1), Space: O(1) */ export declare function randomHexColor(includeHash?: boolean): string; //# sourceMappingURL=randomHexColor.d.ts.map