/** * create only once * * @see https://reactjs.org/docs/hooks-faq.html#how-to-create-expensive-objects-lazily * @see https://github.com/Andarist/use-constant/blob/master/src/index.ts */ export declare function useConstant(fn: () => T): T;