import '@total-typescript/ts-reset/dom'

import 'react'

declare module 'react' {
	// support css variables
	interface CSSProperties {
		[key: `--${string}`]: string | number
	}
}
