/** Specifies the restoration status of an object. Objects in certain storage classes must be restored before they can be retrieved. */
export interface StorageObjectRestoreStatus {
    /** Indicates when the restored copy will expire. */
    expireDate?: string;
    /** Specifies whether the object is currently being restored. */
    inProgress: boolean;
}
//# sourceMappingURL=StorageObjectRestoreStatus.d.ts.map