import { InputValues } from "../utils/types/index.js"; import { StringPromptValueInterface } from "../prompt_values.js"; import { BasePromptTemplate, TypedPromptInputValues } from "./base.js"; //#region src/prompts/string.d.ts /** * Base class for string prompt templates. It extends the * BasePromptTemplate class and overrides the formatPromptValue method to * return a StringPromptValue. */ declare abstract class BaseStringPromptTemplate extends BasePromptTemplate { /** * Formats the prompt given the input values and returns a formatted * prompt value. * @param values The input values to format the prompt. * @returns A Promise that resolves to a formatted prompt value. */ formatPromptValue(values: TypedPromptInputValues): Promise; } //#endregion export { BaseStringPromptTemplate }; //# sourceMappingURL=string.d.ts.map