import { Variable, CurrentValue } from './variables/types'; import { ComponentProperty } from './components/types'; export declare function forEachObject(obj: Record, func: (keyValue: [string, T]) => [string, O]): Record; export declare function compareDefine(prev: Variable | ComponentProperty, next: Variable | ComponentProperty): boolean; export declare function compareEval(prev: CurrentValue, next: CurrentValue): boolean;