/**
 * @license
 * Copyright 2025 Sandlada & Kai Orion
 * SPDX-License-Identifier: MIT
 */
export declare const SDialogController: unique symbol;
export interface IDialogControllerHost extends HTMLElement {
    [SDialogController]: IDialogController;
}
export interface IDialogController {
    show: () => void;
    close: () => void;
}
//# sourceMappingURL=dialog-controller.d.ts.map