export declare const Status: { readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETING: "DELETING"; readonly DEPLOYING: "DEPLOYING"; readonly FAILED: "FAILED"; readonly INITIALIZING: "INITIALIZING"; readonly NONE: "NONE"; readonly STOPPED: "STOPPED"; readonly STOPPING: "STOPPING"; readonly STOP_FAILED: "STOP_FAILED"; readonly SUCCEEDED: "SUCCEEDED"; }; export type Status = (typeof Status)[keyof typeof Status]; export declare const StatusType: { readonly ASYNC_EXECUTIONS: "AsyncExecutions"; readonly DEPLOYMENT: "Deployment"; }; export type StatusType = (typeof StatusType)[keyof typeof StatusType];