/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the dependency type when you connect two tasks.
 *
 * The supported values are:
 * * `FF`&mdash;from 'finish' to 'finish'
 * * `FS`&mdash;from 'finish' to 'start'
 * * `SS`&mdash;from 'start' to 'start'
 * * `SF`&mdash;from 'start' to 'finish'
 */
export declare enum DependencyType {
    /**
     * Specifies that task B can't finish before task A finishes.
     */
    FF = 0,
    /**
     * Specifies that task B can't start before task A finishes.
     */
    FS = 1,
    /**
     * Specifies that task A can't finish before task B starts.
     */
    SF = 2,
    /**
     * Specifies that task B can't start before task A starts.
     */
    SS = 3
}
