export type Lazy = (() => T) & { clear: () => void; }; export declare function lazy(thunk: () => T): Lazy;