import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ProcedureType } from "./ProcedureType"; export declare const ProcedureRefResponseModel: core.serialization.ObjectSchema; export declare namespace ProcedureRefResponseModel { interface Raw { procedure_id: string; version_id?: string | null; name?: string | null; type?: ProcedureType.Raw | null; trigger?: string | null; referenced_tool_ids?: string[] | null; referenced_kb_ids?: string[] | null; referenced_procedure_ids?: string[] | null; referenced_dynamic_variables?: string[] | null; } }