/** * Removes the css important rule from some css properties * @param element The HTMLElement * @param styleProperties The css properties that important must be removed. Ex: ['background-color', 'background'] */ export default function removeImportantStyleRule(element: HTMLElement, styleProperties: string[]): void;