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