/** * Calculates the difference between two objects, representing changes made in the `updatedData` * compared to the `originalData`. Changes in both directions are included in the output. * * If a key is present in `originalData` but missing in `updatedData`, it will be set to `null` in the output. * * @param updatedData - The updated object containing the modified data. * @param originalData - The original object representing the baseline data. * @returns An object representing the differences between the two input objects. */ export declare const diff: (updatedData: any, originalData: any) => any; export declare const getMemorySize: (object: any, formatted?: boolean) => string | number; export declare const parseCSV: (csvData: string, delimiter?: string) => any[];