import { ISpyCall } from "../_interfaces"; export declare class SpyCall implements ISpyCall { get args(): any[]; private _args; constructor(args: Array); allArgumentsMatch(...expectedArguments: Array): boolean; private _argumentIsAsExpected; }