declare enum ResourceState {
    ACTIVE = "ACTIVE",
    DELETING = "DELETING",
    DELETED = "DELETED"
}
export { ResourceState };
