import { Ref } from 'vue'; import { CLBorderRadius, CLPalette } from '../../index.ts'; interface ThemeContext { borderRadius?: Ref; colors: Ref; darkMode: Ref; fontFamily?: Ref; } export declare const modalTheme: (theme?: ThemeContext) => { '--clll-modal-overlay-bg': string; '--clll-modal-content-bg': string; '--clll-default-radius': string | undefined; '--clll-modal-theme-radius': string; '--clll-font-family': string | undefined; }; export {};