type $$ComponentProps = { open?: boolean; title?: string; message?: string; confirmText?: string; cancelText?: string; variant?: 'danger' | 'warning' | 'info'; onconfirm: () => void; oncancel: () => void; }; declare const ConfirmDialog: import("svelte").Component<$$ComponentProps, {}, "open">; type ConfirmDialog = ReturnType; export default ConfirmDialog;