/** * Helper util to return a value from a certain path of the object. * Path is specified as either: * - a string of properties, separated by dots, for example: "x.y". * - an array of properties, for example `[ 'x', 'y' ]`. * You can also specify a default value in case the result is nullish. * * @param object Input object. * @param path Path to the object property. * @param defaultValue Default value if the value at the specified path is nullish. * @return Value of the object property at the specified path. */ export declare const getValueFromObjectPath: (object: Record, path: string | string[], defaultValue?: unknown) => unknown; /** * Determine whether a set of object properties matches a given object. * * Given an object of block attributes and an object of variation attributes, * this function checks recursively whether all the variation attributes are * present in the block attributes object. * * @param blockAttributes The object to inspect. * @param variationAttributes The object of property values to match. * @return Whether the block attributes match the variation attributes. */ export declare function matchesAttributes(blockAttributes: unknown, variationAttributes: unknown): boolean; //# sourceMappingURL=utils.d.ts.map