/** * Ensures that value is of type * * @private * @param {unknown} value A value to examine * @param {string} type A basic JavaScript type to compare to, e.g. "object", "string" * @param {string} name A string to use for the error message * @throws {TypeError} If value is not of the expected type * @returns {undefined} */ declare function assertType(value: unknown, type: string, name: string): undefined; export = assertType;