/**
 * Append element or a couple to the beginning of the parent elements
 * @param parent - where to append
 * @param elements - element or elements list
 */
export declare function prepend(parent: Element, elements: Element | Element[]): void;
