import React from "react"; import type { ParamListBase } from "@react-navigation/native"; import type { StackNavigatorConfig } from "./types"; export interface StackNavigatorProps { config: StackNavigatorConfig; } /** * StackNavigator Component * * Reusable Stack Navigator component that handles configuration and rendering. * Integrates with design tokens for consistent themed styling. */ export declare function StackNavigator({ config }: StackNavigatorProps): React.JSX.Element | null;