import FunctionCall from "./FunctionCall"; declare class FunctionCallMatchError { message: string; error: Error; constructor(expected: FunctionCall, actual: FunctionCall); } export default FunctionCallMatchError;