export type ModalRoot = HTMLLmvzModalElement & {
dialog?: HTMLDialogElement;
open: boolean;
};
export declare const mockDialogMethods: (dialog: HTMLDialogElement) => {
showModal: import("vitest").Mock<() => void>;
close: import("vitest").Mock<(returnValue?: string) => void>;
requestClose: import("vitest").Mock<(returnValue?: string) => void>;
};