import FunctionCall from "./FunctionCall"; declare class PromptString extends FunctionCall { protected _prompt: string; protected _response: string; constructor(prompt: string, response?: string); toString(): string; test(actual: FunctionCall): void; readonly prompt: string; readonly response: string; } export default PromptString;