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 PopoverProps { /** * Scoped store for the popover 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 content container classes. */ class?: string; /** * Disable click-outside to dismiss. * @default false */ disableClickOutside?: boolean; /** * Disable Escape key to dismiss. * @default false */ disableEscapeKey?: boolean; /** * Custom positioning style. * User must provide absolute positioning via inline styles or classes. */ style?: string; } declare const Popover: import("svelte").Component, {}, "">; type Popover = ReturnType; export default Popover; //# sourceMappingURL=Popover.svelte.d.ts.map