import { Ref } from 'vue'; import { CLColors, CLPalette } from '../../index.ts'; interface ThemeContext { colors: Ref; darkMode: Ref; } interface TextThemeProps { color?: CLColors; theme?: ThemeContext; } export declare const textTheme: ({ color, theme }: TextThemeProps) => { '--clll-text-color': string; }; export {};