import { MutableObject } from '../Types'; /** * Converts the attributes of a mutable object into an array. * @template T - The type of the attributes. * @param {MutableObject} obj - The mutable object whose attributes will be converted. * @param {boolean} [removeNull] - Optional. Specifies whether to remove null values from the resulting array. * @returns {T[]} An array containing the attributes of the mutable object. */ declare const attributesToArray: (obj: MutableObject, removeNull?: boolean) => T[]; export default attributesToArray;