import type { HostRule } from '../../../types';
import type { LegacyHostRule } from '../../../util/host-rules';
import { AbstractMigration } from '../base/abstract-migration';
export declare class HostRulesMigration extends AbstractMigration {
    readonly propertyName = "hostRules";
    run(value: (LegacyHostRule & HostRule)[]): void;
}
