export type RevGlobalDialogPositionType = "bottomright" | "center" | "left" | "right" | "topleft" | "top" | "topright" | "bottomleft" | "bottom" | undefined; export interface RevGlobalDialogProps { isBlurBackground?: boolean; title?: string; maximizable?: boolean; position?: RevGlobalDialogPositionType; modelValue: boolean; width?: string; draggable?: boolean; dismissableMask?: boolean; closeOnEscape?: boolean; modal?: boolean; }