/** * Builds placeholder names while avoiding collisions with parameter content. * * @param values Parameter values to scan for conflicting tokens. * * @private function of ParameterNaming */ declare function buildParameterNames(values: string[]): string[]; /** * Provides naming utilities for prompt parameters. * * @private helper of prompt notation */ export declare const ParameterNaming: { buildParameterNames: typeof buildParameterNames; }; export {};