/** @public */ export declare function mergeNonFalsyObjectProperties(obj: T, keyValuePairs?: Partial): R; /** * Get nested value from object using dot notation path * @example getNestedValue({ a: { b: { c: 1 } } }, 'a.b.c') // returns 1 */ export declare function getNestedValue(obj: T, path: string): R | undefined; export declare function stableStringify(value: unknown): string;