import { InjectionKey, Ref } from 'vue'; export interface NotificationContextProps { classNames?: { notice?: string; list?: string; }; } export declare const NotificationContext: InjectionKey>; export declare function useNotificationProvider(props: Ref): Ref; export declare function useNotificationContext(): Ref<{}, {}>;