"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.useLabelled = void 0;
const react_1 = require("react");
const context_1 = require("./context");
function useLabelled() {
    const labelled = react_1.useContext(context_1.LabelledContext);
    if (labelled == null) {
        throw new Error('No labelled in context');
    }
    return labelled;
}
exports.useLabelled = useLabelled;
