/**
 * State of applying condition of work item.
 */
export declare enum PersistentWorkItemApplyState {
    /**
     * Required to re-apply.
     */
    Required = 0,
    /**
     * Skip application.
     */
    Skip = 1
}
