import type { StackComponentView } from '../types'; interface Props { stacks?: StackComponentView[]; onSelect?: (comp: StackComponentView, data: any) => void; onClose?: (comp: StackComponentView) => void; onRootSelect?: () => void; } declare const SStackView: import("svelte").Component; type SStackView = ReturnType; export default SStackView;