export declare const GatewayType: { readonly BACKUP_VM: "BACKUP_VM"; }; export type GatewayType = (typeof GatewayType)[keyof typeof GatewayType]; export declare const SyncMetadataStatus: { readonly CREATED: "CREATED"; readonly FAILED: "FAILED"; readonly PARTIALLY_FAILED: "PARTIALLY_FAILED"; readonly RUNNING: "RUNNING"; readonly SUCCEEDED: "SUCCEEDED"; }; export type SyncMetadataStatus = (typeof SyncMetadataStatus)[keyof typeof SyncMetadataStatus]; export declare const HypervisorState: { readonly ERROR: "ERROR"; readonly OFFLINE: "OFFLINE"; readonly ONLINE: "ONLINE"; readonly PENDING: "PENDING"; }; export type HypervisorState = (typeof HypervisorState)[keyof typeof HypervisorState];