/**
 * Find the children of a given DOM element and return it as an Array
 *
 * @param elm - DOM element to find children from
 * @return List of found child DOM elements
 *
 * @example
 *
 * ```ts
 * children(someDiv);
 * ```
 */
export default function children(elm: ParentNode): Element[];
