import { type QRL, type Signal, type QwikIntrinsicElements } from '@builder.io/qwik'; export type ModalProps = Omit & { onShow$?: QRL<() => void>; onClose$?: QRL<() => void>; 'bind:show': Signal; closeOnBackdropClick?: boolean; alert?: boolean; }; export declare const Modal: import("@builder.io/qwik").Component;