export declare const randomNumBetween: (min: number, max: number) => number; export declare const hexToRgb: (hex: string) => { r: number; g: number; b: number; }; export declare const isBrowser: () => boolean;