/** * Thrown when a stream-returning queryFn completes without emitting a single * value: the run has neither data nor a producer error to settle with, so it * fails explicitly instead of leaving the entry pending forever. */ export declare class EmptyStreamError extends Error { readonly name = "EmptyStreamError"; constructor(); }