/** * Retrieves a specific value from an object based on a given key. * * @param key - The key to search for in the object. * @param obj - The object containing the values. * @returns The value associated with the given key, or null if not found. */ export declare function getValueFromObject(key: string, obj: Record): T | null;