import type { InjectionKey, Ref } from 'vue' export interface DialogContext { open: Ref titleId: string descriptionId: string } export const DialogContextKey: InjectionKey = Symbol('DialogContext')