/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { MouseEvent } from 'react'; /** Closes the dialog that contains the clicked element, e.g. a Button in the footer of a Modal Dialog. */ export declare const closeModalDialog: (event: MouseEvent) => void | undefined; /** Opens the dialog that the CSS selector matches – e.g. `'#my-dialog'` – as a modal. */ export declare const openModalDialog: (selector: string) => void;