export type RandomNumberProps = { min?: number; max: number; }; export declare const randomNumber: ({ min, max }: RandomNumberProps) => number;