import { AbstractMigration } from '../base/abstract-migration';
export declare class DepTypesMigration extends AbstractMigration {
    readonly deprecated = true;
    readonly propertyName: RegExp;
    run(value: unknown, key: string): void;
}
