import type * as ElevenLabs from "../index"; export interface ProcedureAtVersion { /** Procedure ID */ procedureId: string; /** Procedure name */ name: string; /** Procedure content */ content: string; type?: ElevenLabs.ProcedureType; /** Agent ID of the procedure */ agentId: string; /** Version ID of a version of the procedure. None for a procedure never versioned. */ versionId?: string; }