import type { FunctionCall } from '../../types.js'; /** * Extracts a human-readable name from a measure FunctionCall. * * @param call - Measure factory function call * @returns Display name for LLM / UI labels * * @internal */ export declare function getMeasureName(call: FunctionCall): string;