export declare const tap: <T>(effect: (t: T) => unknown) => (t: T) => T;
export declare const tapAsync: <T>(effect: (t: T) => Promise<unknown>) => (t: T) => Promise<T>;
