/** * Utility functions for nested object access and value retrieval. * @module utils */ declare const _default: { getNestedObject: (obj: unknown, keys: string[]) => Record; getNestedValue: (data: unknown, key: string) => unknown; }; export default _default;