export type Supplier<T> = T | Promise<T> | (() => T | Promise<T>); export declare const Supplier: { get: <T>(supplier: Supplier<T>) => Promise<T>; };