import { Ref } from 'vue'; import { CLColors, CLPalette } from '../../index.ts'; interface ThemeContext { colors: Ref; darkMode: Ref; } interface BaseLinkProps { color: CLColors; underline?: boolean; theme?: ThemeContext; } export declare const base_link: ({ color, underline, theme }: BaseLinkProps) => { '--clll-link-text-color': string; '--clll-link-text-hover': string; '--clll-link-underline-color': string; '--clll-link-underline-hover': string; '--clll-link-focus-border': string; '--clll-link-focus-shadow': string; }; export {};