export type Lazy<T> = T | (() => T);
export declare namespace Lazy {
    function get<T>(lazy: Lazy<T>): T;
}
