import * as C from '../../constants'; export declare const deletionMsg: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const deletionSuccessMsg: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const anotherDeletionMsg: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const anotherDeletionSuccessMsg: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const subscribeCreateAndReadMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; names: string[]; }; export declare const readResponseMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: {}; }; export declare const subscribeCreateAndReadPermissionErrorMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; originalAction: C.RECORD_ACTION; names: string[]; }; export declare const subscribeCreateAndReadDeniedMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; originalAction: C.RECORD_ACTION; names: string[]; }; export declare const subscribeMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; names: string[]; }; export declare const unsubscribeMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; names: string[]; }; export declare const recordSnapshotMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const recordHeadMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const recordHeadResponseMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const recordData: { name: string; }; export declare const recordVersion = 5; export declare const recordUpdate: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: { name: string; }; isWriteAck: boolean; }; export declare const recordUpdateWithAck: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: { name: string; }; isWriteAck: boolean; }; export declare const recordPatch: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; path: string; parsedData: string; isWriteAck: boolean; }; export declare const recordPatchWithAck: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; path: string; parsedData: string; isWriteAck: boolean; }; export declare const recordPatchMulti: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: { path: string; data: string; }[]; isWriteAck: boolean; }; export declare const recordPatchMultiWithAck: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: { path: string; data: string; }[]; isWriteAck: boolean; correlationId: string; }; export declare const recordPatchMultiInvalid: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: string; isWriteAck: boolean; }; export declare const recordDelete: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const createAndUpdate: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; version: number; parsedData: { name: string; }; isWriteAck: boolean; }; export declare const listenAcceptMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; subscription: string; }; export declare const listenRejectMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; subscription: string; }; export declare const unlistenMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const listenMessage: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; }; export declare const writeAck: { topic: C.TOPIC; action: C.RECORD_ACTION; name: string; data: (number[] | null)[]; }; export declare const notify: { topic: C.TOPIC; action: C.RECORD_ACTION; names: string[]; };