/**
 * A noop function
 */
export declare const noop: () => void;
/**
 * The identity function
 *
 * @param x - the arg
 * @returns the arg
 */
export declare const identity: <T>(x: T) => T;
