import { ModalProps } from './modal.js'; export type ModalShowProps = Omit; export type ModalShowHandler = { close: () => void; }; export declare const closeFnSet: Set<() => void>; export declare function show(props: ModalShowProps): ModalShowHandler;