import { AbstractMigration } from '../base/abstract-migration';
export declare class NodeMigration extends AbstractMigration {
    readonly propertyName = "node";
    run(value: unknown): void;
}
