export declare const getAllKeys: (object: unknown, keys?: Array) => Array; export declare const getValueByKeyAnyLevel: (obj: Record, key: string) => T | undefined; export declare const simpleDeepEqual: (lhs: unknown, rhs: unknown) => boolean; export declare const deleteByPath: (object: Record, path: string[]) => void; export declare const getByPath: (item: any[] | Record, path: Array) => unknown; export declare const hasByPath: (item: any[] | Record, path: Array) => boolean; export declare function isObject(input: any): boolean;