/** * This file was auto-generated by Fern from our API Definition. */ export interface ConditionsTaskStep { kind: "conditions"; conditions: ConditionsTaskStep.Conditions.Item[]; next?: ConditionsTaskStep.Next.Item[]; } export declare namespace ConditionsTaskStep { type Conditions = Conditions.Item[]; namespace Conditions { interface Item { prop?: string; value?: string; } } type Next = Next.Item[]; namespace Next { interface Item { kind?: string; ref?: string; } } }