import type { CreatedBy } from "../../../../../lib/graph-write/dist/index.js"; export declare const RESERVED_LABEL_REFUSAL: string; interface OriginGateArgs { labels: string[]; createdBy: CreatedBy; accountId?: string; tool: "memory-write"; } type OriginGateResult = { ok: true; } | { ok: false; reason: "reserved-label"; message: string; }; export declare function checkLabelOriginGate(args: OriginGateArgs): OriginGateResult; export {}; //# sourceMappingURL=label-origin-gate.d.ts.map