import { Command } from 'prosemirror-state'; import { CHANGE_STATUS } from './types/change'; import { TrackChangesStatus } from './types/track'; export declare const setTrackingStatus: (status?: TrackChangesStatus) => Command; export declare const setChangeStatuses: (status: CHANGE_STATUS, ids: string[]) => Command; export declare const setUserID: (userID: string) => Command; export declare const refreshChanges: () => Command;