declare namespace _default { /** * Saves a backup of the editor content for a given node. * * @param {string} nodeId - The Alfresco node ID * @param {string} content - The editor content to back up * @param {string} sessionId - The collaborative session ID * @returns {Promise} */ function saveBackup(nodeId: string, content: string, sessionId: string): Promise; /** * Loads a backup for a given node. * * @param {string} nodeId - The Alfresco node ID * @returns {Promise} The backup record or null */ function loadBackup(nodeId: string): Promise; /** * Clears the backup for a given node. * * @param {string} nodeId - The Alfresco node ID * @returns {Promise} */ function clearBackup(nodeId: string): Promise; } export default _default; //# sourceMappingURL=CollabBackupService.d.ts.map