/** * Combines the provided objects into a single output object, * while removing any null or false values. * @param objects - the objects to combine */ export declare function combineTruthyObjects(objects: (T | boolean | null)[]): T;