/**
 * @returns A random UUID v4.
 */
declare const getRandomUuid: () => string;
/**
 * @returns The current date in format `YYYY-MM-DDTHH:mm:ss.sss[-+]HH:mm`.
 */
declare const getDate: () => string;
/**
 * Functional-like composer to compose functions
 */
declare function pipe<T>(functions: Function[]): (input: T) => T;
export { getDate, getRandomUuid, pipe };
