/**
* Sets the style properties of an HTML element.
*
* @param element - The element to set style properties on.
* @param props - The style properties to set, in the form of an object of key-value pairs.
*
* @example
* ```ts
* const el = document.getElementById('myElement')
* setStyleProps(el, { color: 'red', fontSize: '14px' })
* ```
*
* @returns void
* @since 1.0.0
*/
declare const setStyleProps: (element: T | null, props: Partial<{
[key: string]: string;
}>) => void;
export default setStyleProps;