import type { Ref } from 'vue'; /** * Share the alert group name with all its children. * @param {Ref} name the alert group name */ export declare function useAlertProvideGroup({ name, }: { name: Ref; }): import("mitt").Emitter<{ close: string; }>;