/** * Removes null/undefined values from an object. * * @param object The object with null values. * @returns New object without null values. */ export declare const removeNullValues: (obj: any) => any; export * from './data'; export * from './bytes'; export * from './numbers';