import { INodeType, INodeTypeDescription } from 'n8n-workflow'; import { protectWithHotFolder } from './operations/protectWithHotFolder'; import { unprotect } from './operations/unprotect'; export declare class SecloreProtect implements INodeType { description: INodeTypeDescription; customOperations: { drmProtection: { protectWithHotFolder: typeof protectWithHotFolder; }; drmUnprotection: { unprotect: typeof unprotect; }; }; }