import JsonRxMessage from './JsonRxMessage';
export declare const RESPONSE_COMPLETE_TYPE_CODE = 5;
export default class JsonRxResponseComplete<TPayload = unknown> extends JsonRxMessage {
    private subscriptionId;
    private payload?;
    getSubscriptionId(): number;
    getPayload(): TPayload | undefined;
    constructor(subscriptionId: number, payload?: TPayload);
    getJson(): Array<unknown>;
}
//# sourceMappingURL=JsonRxResponseComplete.d.ts.map