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 toastTheme: ({ color, theme }: ThemeProps) => { '--clll-toast-bg-color': string; '--clll-toast-text-color': string | undefined; '--clll-toast-action-button-text-color': string | undefined; '--clll-toast-action-button-bg-color': string | undefined; '--clll-toast-action-button-hover-color': string | undefined; '--clll-toast-dismiss-button-text-color': string | undefined; '--clll-toast-dismiss-button-bg-color': string | undefined; '--clll-toast-dismiss-button-hover-color': string | undefined; '--clll-toast-icon-bg': string | undefined; '--clll-toast-icon-color': string | undefined; '--clll-toast-theme-radius': string; }; export {};