import chai from 'chai'; // We use electron-mocha which has a child dependency on mocha. // However flow-typed does not automatically pull annotations for mocha. // These stubs remedy the absence of those. declare function describe(string, Function): void; declare function it(string, (done: Function) => any): Promise | void; declare function afterEach((done: Function) => void): Promise | void; declare function beforeEach((done: Function) => void): Promise | void; declare var expect: $PropertyType; declare var spy: any;