| 12345678910 | import { Dialog } from './function-call';export default Dialog;export { Dialog };export type { DialogProps } from './Dialog';export type { DialogTheme, DialogMessage, DialogOptions, DialogMessageAlign, } from './types';declare module 'vue' {    interface GlobalComponents {        VanDialog: typeof Dialog.Component;    }}
 |