import type * as ElevenLabs from "../index"; export interface ProcedureDraftResponseModel { /** Procedure ID */ procedureId: string; /** Procedure name */ name: string; /** Procedure content */ content: string; /** Procedure type */ type?: ElevenLabs.ProcedureType; /** When the agent should use this procedure. Empty string means this is a sub-procedure that should only start when another procedure references it. */ trigger?: string; }