/**
 * Returns a new function that will return the value
 */
declare function constant(value: any): () => any;
export default constant;
