/**
 * Resource status during deletion
 */
export declare enum Status {
    READY = "READY",
    DELETING = "DELETING"
}
/**
 * Parse status string and return a valid Status enum value.
 * Defaults to READY for undefined or invalid values.
 */
export declare function parseStatus(status?: string): Status;
