import React from 'react'; import type { StackState, StackEntry } from '../types'; interface StackViewProps { state: StackState; components: Record>; onDismiss: (key: string) => void; renderContent?: (entry: StackEntry) => React.ReactNode; } /** * Renders a native stack navigator using `react-native-screens` experimental Stack API. * Maps stack entries to `Stack.Screen` components with proper dismiss handling * and nested content support. */ export declare function StackView({ state, components, onDismiss, renderContent, }: StackViewProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StackView.d.ts.map