/**
 * @template V
 * @param {Object<V>} object
 * @param {string} key
 * @returns {V}
 * @throws {Error} if such key does not exist
 */
export function validatedObjectValueByKey<V>(object: any, key: string): V;
//# sourceMappingURL=validatedObjectValueByKey.d.ts.map