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