/**
 * Type guard to check if an unknown value is a readable stream
 */
export declare function isReadableStream(stream: unknown): stream is NodeJS.ReadableStream;
/**
 * Type guard to check if an unknown value is a writable stream
 */
export declare function isWritableStream(stream: unknown): stream is NodeJS.WritableStream;
//# sourceMappingURL=streamTypeGuards.d.ts.map