type $$ComponentProps = { title?: string; description?: string; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full'; tone?: 'default' | 'info' | 'success' | 'warning' | 'danger'; position?: 'center' | 'top'; closeOnBackdrop?: boolean; closeOnEscape?: boolean; closeOnConfirm?: boolean; showClose?: boolean; showCancel?: boolean; showConfirm?: boolean; cancelLabel?: string; confirmLabel?: string; confirmVariant?: 'primary' | 'secondary' | 'destructive'; confirmLoading?: boolean; confirmDisabled?: boolean; hideFooter?: boolean; footerAlign?: 'start' | 'center' | 'end' | 'between'; scrollable?: boolean; blurBackdrop?: boolean; body?: string; }; declare const DialogStory: import("svelte").Component<$$ComponentProps, {}, "">; type DialogStory = ReturnType; export default DialogStory;