import type { ScopedDestinationStore } from '../../navigation/scope-to-destination.js'; interface NavigationStackPrimitiveProps { /** * Scoped store for the stack content. * When null, stack is hidden. When non-null, stack is visible. */ store: ScopedDestinationStore | null; /** * Stack of screen states. */ stack: readonly State[]; /** * Callback to handle going back in the stack. */ onBack?: () => void; } declare const NavigationStackPrimitive: import("svelte").Component, {}, "">; type NavigationStackPrimitive = ReturnType; export default NavigationStackPrimitive; //# sourceMappingURL=NavigationStackPrimitive.svelte.d.ts.map