Props to be given to tab routing components.
import type { TabRoutingProps } from "react-native-app-helpers";
type OtherProps = {
readonly exampleOtherPropKey: "Example Other Prop Value",
};
const example: TabRoutingProps<"Example Route", OtherProps> = {
route: "Example Route",
};