import { InjectionKey, Ref } from 'vue'; import { CLToastProps } from '../../../index.ts'; export interface CLToastContext { visible: Ref; showToast: (newToastProps: Omit) => void; hideToast: () => void; } export declare const ToastInjectionKey: InjectionKey;