import Subscription from './Subscription';
import { Subscribable } from '..';
export declare type PassiveObserver<PayloadType> = (payload?: PayloadType) => void;
export default class PassiveSubscription<PayloadType> extends Subscription<PayloadType> {
    constructor(observer: PassiveObserver<PayloadType>, subscribable: Subscribable<PayloadType>);
}
