/** * Find a DOM element with the given ID * * @param ids - ID to find the element by * @return The found element */ declare function findById(ids: string): HTMLElement | null; /** * Find a DOM elements from a list of IDs * * @param ids - ID to find the element by * @return The found elements */ declare function findById(ids: string[]): HTMLElement[]; export default findById;