/** * Creates a function that returns `value`. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 48 bytes * - Micro-dash: 4 bytes */ export declare function constant(value: T): () => T;