import type { TriggerDefinition } from "../types.js"; /** * Resolves a definition's display name without loading the global catalog. * * @param definition - Trigger definition to name. */ export declare function getTriggerDefinitionName(definition: TriggerDefinition): string; /** * Converts a stable identifier to a sentence-cased display name. * * @param value - Stable identifier to format. */ export declare function sentenceCase(value: string): string;