/** * Sets inline styles on an element and returns a cleanup function that * restores the prior inline values (so we do not stomp consumer styles). */ export declare function setStyle({ element, styles, }: { element: HTMLElement; styles: Array<{ property: string; value: string; }>; }): () => void;