import { QRL, Signal } from '@builder.io/qwik'; export interface DialogProps { id?: string; open: Signal; showCloseIcon?: boolean; class?: string; modalBoxClass?: string; title?: string; errorMessage?: string; infoMessage?: string; successMessage?: string; warningMessage?: string; onClose$?: QRL<(e: HTMLDialogElement) => void>; onPostClose$?: QRL<(e: HTMLDialogElement) => void>; onOpen$?: QRL<(e: HTMLDialogElement) => void>; onPostOpen$?: QRL<(e: HTMLDialogElement) => void>; loading?: Signal; } export declare const Dialog: import("@builder.io/qwik").Component;