import FunctionCall from "./functions/FunctionCall"; declare class OutOfCallsError { functionCall: FunctionCall; message: string; error: Error; constructor(functionCall: FunctionCall); } export default OutOfCallsError;