import type { SemanticFactLocatedValueV1 } from "./semantic-fact-types.js"; export declare function parseSemanticFactAxisValues(value: unknown, label: string): { axis_ref: string; value_ref: string; }[]; export declare function parseSemanticFactLocatedValue(value: unknown, label: string): SemanticFactLocatedValueV1; export declare function parseSemanticFactLocator(value: unknown, label: string): { material_ref: string; kind: "api_operation" | "code_symbol" | "custom" | "json_pointer" | "manifest_pointer" | "schema_pointer" | "source_item" | "whole_resource" | "yaml_pointer"; value: string; }; export declare function parseSemanticFactBoolean(value: unknown, label: string): boolean;