export default MockAssert;
export type MockAssert = any;
/**
 * @typedef MockAssert
 */
declare function MockAssert(calls: any): void;
declare class MockAssert {
    /**
     * @typedef MockAssert
     */
    constructor(calls: any);
    calls: () => any;
    callsCount: () => any;
    mostRecentCall: () => any;
}
