import { App } from 'vue';

declare const DialogSymbol: unique symbol;
declare const Dialog: {
    install(app: App, options?: {
        singleton?: boolean;
    }): void;
};

export { Dialog, DialogSymbol };
