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