import type { ScopedDestinationStore } from '../navigation/scope-to-destination.js'; import type { PresentationState } from '../navigation/types.js'; import type { SpringConfig } from '../animation/spring-config.js'; interface ModalProps { /** * Scoped store for the modal content. */ store: ScopedDestinationStore | null; /** * Presentation state for animation lifecycle. * Optional - if not provided, no animations (instant show/hide). */ presentation?: PresentationState; /** * Callback when presentation animation completes. */ onPresentationComplete?: () => void; /** * Callback when dismissal animation completes. */ onDismissalComplete?: () => void; /** * Spring configuration override. */ springConfig?: Partial; /** * Disable all default styling. * When true, component behaves like the primitive. * @default false */ unstyled?: boolean; /** * Override backdrop classes. */ backdropClass?: string; /** * Override content container classes. */ class?: string; /** * Disable click-outside to dismiss. * @default false */ disableClickOutside?: boolean; /** * Disable Escape key to dismiss. * @default false */ disableEscapeKey?: boolean; } declare const Modal: import("svelte").Component, {}, "">; type Modal = ReturnType; export default Modal; //# sourceMappingURL=Modal.svelte.d.ts.map