import { inject as n } from "vue";
const t = Symbol("designerContext");
function r() {
const e = n(t);
if (!e)
throw new Error(
"useDesignerContext must be used within a Designer component"
);
return e;
}
export {
t as DESIGNER_CONTEXT_KEY,
r as useDesignerContext
};