import { Assertion } from '../types';
/**
 * Convert lazy assertions into eager assertions.
 * If an Assertion fails throws an Error.
 */
export declare function assert(assertion: Assertion<any>): void;
