import { NavigationContainerRefWithCurrent } from '@react-native-bedrock/native/@react-navigation/native'; export type RouterBackButtonProps = { onPress?: () => void; tintColor?: string; canGoBack?: boolean; onBack?: () => void; navigationContainerRef: NavigationContainerRefWithCurrent; }; export declare function RouterBackButton({ tintColor, canGoBack, onBack, navigationContainerRef }: RouterBackButtonProps): import("react/jsx-runtime").JSX.Element;