import { IFunctionInput } from '../../types/productsBuilder.types'; export declare const validateObjectKeys: (allowedKeys: Array, obj: Record) => void; export declare const validateFunctionInputKeys: (input: Array, obj: Record) => void; export declare const deepEqual: (obj1: any, obj2: any) => boolean; export declare function findFaultyKeys(keys: string[], obj: any): { valid: boolean; faultyKeys?: string[]; value: any; }; export declare function traverseObject(obj: Record): { key: string; value: any; }[];