export interface FlowBase { /** The unique identifier for the flow. */ id?: string | undefined; /** The name of the flow. */ name?: string | undefined; /** The description of the flow. */ description?: string | undefined; /** The unique slug for the flow used in API requests. */ slug?: string | undefined; }