import { Ref } from 'vue'; import { CLColors, CLPalette } from '../../index.ts'; interface ThemeContext { colors: Ref; darkMode: Ref; } interface ThemeProps { color: CLColors; theme?: ThemeContext; } export declare const skeletonTheme: (theme?: ThemeContext) => { '--clll-skeleton-bg-color': string; '--clll-skeleton-theme-radius': string; }; export declare const spinnerTheme: ({ color, theme }: ThemeProps) => { '--clll-spinner-color': string; }; export {};