import { AssertionEnvironment } from './types'; /** * Creates an Assertions Environment where assertions can be counted * * @name createAssertionsEnvironment(): AssertionEnvironment * @example * import { createAssertionsEnvironment } from '@typed/assertions' * * const { stats, assertions } = createAssertionsEnvironment() * * const { ok } = assertions * * console.log(stats.count) // => 0 * * ok(true) * * console.log(stats.count) // => 1 */ export declare function createAssertionsEnvironment(): AssertionEnvironment;