/**
* Test if `condition` is truthy. If it is not, an `Error` is thrown with a
* `message` property equal to `message` parameter.
* @hidden
* @param {boolean} condition
* @param {string} message
*/
export declarefunctionassert(condition: boolean, message: string): void;