export declare type Consumer = (a: A) => void; export declare type Supplier = () => A; /**@deprecated*/ export declare type AsyncSupplier = () => Promise;