export declare const LandingZoneDriftStatus: {
    readonly Drifted: "DRIFTED";
    readonly InSync: "IN_SYNC";
};
export type LandingZoneDriftStatus = (typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
export declare const LandingZoneStatus: {
    readonly Active: "ACTIVE";
    readonly Processing: "PROCESSING";
    readonly Failed: "FAILED";
};
export type LandingZoneStatus = (typeof LandingZoneStatus)[keyof typeof LandingZoneStatus];
