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