import type { RGB255, RGBA255 } from '../types/rgb'; declare function getRandomRgb255Color(transparency?: T | undefined): T extends true ? RGBA255 : RGB255; declare function getRandomHexColor(transparency?: boolean): string | null; export { getRandomHexColor, getRandomRgb255Color };