/// <reference types="sinon" />
import 'sinon-chai';
declare type Mocks = {
    fake: sinon.SinonFake;
};
declare global {
    const mock: Mocks;
    namespace Chai {
        interface Assertion {
            matchSnapshot(name?: string): void;
            toMatchSnapshot(name?: string): void;
        }
    }
}
export {};
