import { Observable, UnaryFunction } from 'rxjs'; import { IO } from 'fp-ts/lib/IO'; import { Task } from 'fp-ts/lib/Task'; export declare const isNonNullable: (value: T) => value is NonNullable; export declare const isNullable: (value: T) => boolean; export declare const isTestEnv: () => boolean; export declare const getPortEnv: () => number | undefined; export declare const wait: (seconds?: number) => Promise; export declare const bufferFrom: (data: any) => Buffer; export declare const stringifyJson: (data: any) => string; export declare const parseJson: (data: any) => any; export declare const pipeFromArray: (fns: UnaryFunction[]) => UnaryFunction; export declare const fromIO: (fa: IO) => Observable; export declare const fromTask: (fa: Task) => Observable; //# sourceMappingURL=any.util.d.ts.map