import { Observer, PartialObserver } from "./types";
export declare function toObserver<T>(observer?: PartialObserver<T>): Observer<T>;
