/** * Checks if `test` is truthy. If it is not, then throw with the given message * @param test The object to check for truthiness * @param msg The message to throw if `test` is falsy */ export declare function ensure(test: any, msg: string): void;