export declare const DatastoreStatus: {
    readonly Creating: "CREATING";
    readonly CreateFailed: "CREATE_FAILED";
    readonly Active: "ACTIVE";
    readonly Deleting: "DELETING";
    readonly Deleted: "DELETED";
};
/**
 * A string to denote the Datastore's state.
 */
export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
