/**
 * Sets the style of an DOM element
 */
export default function setStyle(element: HTMLElement, style: string | {
    [key: string]: string | number;
}): void;
