import type { ILlmPromptContext } from '../interface/llm-service.interface'; import type { QualifiedRules, UserPromptConfig } from "@commitlint/types"; /** * Service for extracting LLM prompt context from commitlint configuration */ export declare class PromptContextExtractorService { private readonly TYPE_ENUM_INDEX; /** * Extract LLM prompt context from commitlint rules and prompts * @param {QualifiedRules} rules - The commitlint rules * @param {UserPromptConfig} prompts - The user prompt configuration * @returns {ILlmPromptContext} The extracted LLM prompt context */ extractContext(rules: QualifiedRules, prompts: UserPromptConfig): ILlmPromptContext; }