/** * Utility function to get nested property value. */ export declare const getNestedPropertyValue: (obj: Record, path: string) => any; /** * Utility function to set nested property value. */ export declare const setNestedPropertyValue: (obj: Record, path: string, value: any) => void; export declare const isEmptyObject: (obj: object) => boolean; export declare const deepEquals: (a: object, b: object) => boolean; export declare const equals: (obj1: object, obj2: object, field?: string) => boolean; export declare const resolveFieldData: (data: object, field?: string) => object; export declare const contains: (value: object, list: object[]) => boolean; export declare const isNotEmpty: (value: object) => boolean; export declare const isEmpty: (value: object | string) => boolean; export declare const deepMerge: (target: T, source: Partial) => T;