type LazyValue<T> = () => Readonly<T>;
declare const lazyValue: <T>(cb: () => T) => LazyValue<T>;

export { lazyValue };
export type { LazyValue };
