/** * Determines whether an object has keys for a given type. * @template T The type to test. * @param {unknown} value The value to test. * @param {...keys: Array} keys The keys of `T` to test. * @returns {boolean} Whether `value` has all `keys`. */ export declare function hasKeys(value: unknown, ...keys: Array): boolean; //# sourceMappingURL=hasKeys.d.ts.map