import { RefObject } from 'react'; /** * This class is used to get the computed style of a theme element. * It is used to get the value of a CSS variable defined in the theme. */ declare class ThemeComputedStyle { #private; constructor(componentRef: RefObject, scope: string); private getThemeElement; getPropertyValue(name: string): string; } export { ThemeComputedStyle };