import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; declare const self: (vars: ThemeCommonVars) => { fontWeight: string; rotate: string; colorStartPrimary: string; colorEndPrimary: string; colorStartInfo: string; colorEndInfo: string; colorStartWarning: string; colorEndWarning: string; colorStartError: string; colorEndError: string; colorStartSuccess: string; colorEndSuccess: string; }; export type GradientTextThemeVars = ReturnType; declare const gradientTextLight: Theme<'GradientText', GradientTextThemeVars>; export default gradientTextLight; export type GradientTextTheme = typeof gradientTextLight;