import { type Obj } from "./objectTypes"; /** * Get unique keys in multiple objects. * * @param {object} $objs Objects to get the keys from. * @return {array} Unique object keys */ export declare function UniqueObjectKeys(...$objs: Obj[]): string[];