import type * as ElevenLabs from "../index"; export interface CreateProcedureRequestModel { /** Procedure name */ name?: string; /** Initial 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. If omitted or null, the trigger is derived from the content instead. Also accepts `description` as an alias. */ trigger?: string; }