/** THIS FILE IS MANUALLY MAINAINED: see .fernignore */ export type Supplier = T | (() => T); export declare const Supplier: { get: (supplier: Supplier) => T; map: (supplier: Supplier, f: (value: T) => R) => Supplier; };