/**
* A function that iterates through the computed style properties of a HTML
* element and redefines them as inline styles.
*/exportdefaultfunctioncomputedStyleToInlineStyle(element: HTMLElement | SVGElement, options?: {
recursive?: boolean;
properties?: string[];
}): void;