import type { INode } from 'n8n-workflow';
export interface NodeMigrationResult {
    node: Pick<INode, 'type' | 'typeVersion' | 'parameters'>;
    unmapped?: string[];
    notes?: string[];
}
export interface NodeMigration {
    ruleId: string;
    migrate(node: INode): NodeMigrationResult;
}
