export declare type Sink = { next: (value: TValue) => void; error: (error: TError) => void; complete: () => void; };