import { IO } from './io.types'; export declare const random: (min?: number, max?: number) => IO; export declare const randomInt: (min: number, max: number) => IO; export declare const randomBool: IO; export declare const log: (message: string) => IO; export declare const error: (message: string) => IO; export declare const alert: (message: string) => IO; export declare const now: IO; export declare const nowDate: IO;