/**
 * A function that returns a function, that returns `x`
 */
export declare const constant: <T = any>(x: T) => () => T;
