export declare const convertObjectKeysToUpperCase: (source: Record) => Record; export declare const convertObjectKeysToLowerCase: (source: Record) => Record; export declare const removeProperties: (obj: Record, props: string[]) => void; export declare const getValueByPath: (obj: Record, path: string) => any; export declare const isJsonObject: (value: any) => boolean;